ERC-20
Overview
Max Total Supply
13,053,600.580411834748627323 HOLY
Holders
344
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:
HolyToken
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* : -. :::::: :::::. ::=::::::: :::::. .:::::. ::::..::::: .::::::::::::::::.:::::::::::: .:::::::::::::::::::::. :#%%%%= =%%%%#=#%%+=#%%%%%*=#%%%#= :#%%%%+.*%%%%=:%%%%* :*%%%%*#%%%%%%%%%#+#%%%%%%%%%%%=+#%%%%%%%%%**%%%%%%%%%#= =%%%%#:.*%%%%**%#%*+%%%%%%*+%%%%#. *%%%%**%%%%= :%%%%* .*%%%%++%%%%%%%%%%++%%%%%%%%%%%%+#%%%%%%%%%#=#%%%%%%%%%*. .*####+ -#####+##=+=#######+#####= =#########= :####* +####*:*####+:::::-#####-:=#####+####*::::::*%%%%*:::::. -####*: +####++*+===*#####*+####*. .*######*- :#*##+ =####*.-####*: =####+ -####+*####- :*####= +#####**####%=##=====+*#%%*#%###+ +#####*- :%%##+-####*: *#%##*====-.*#%%%*++*####=##%%#*+++=.=%###*+==== :%%###%#%%%%%#+%+=======*%%=%%###: +#%##*: :%#*%*%%%##: :%%%%%%%%%#:=%##%%%%%#%%%**%%%##%%#%%+#%#%%%%#%#= +%%#%%**%%%%%+#%#========#**%%#%* .#%%%%= :##*%%%%##: +%%%%%****= #%%%%#%%%#%+-.:+***%%%%%%+%%%%%****+ .*####= =#####+##+======+*#=#####- =####*: :########= .*####= :#####=#####- .*####+*####* -#####-:*####+*###+=#*=###*+####*:.....*####+ :#######= -#####-.....+####*:#####-......+#####=#####=..... .+****+ -*****=***+++*+++**=+**********=*****: :******= .+**********=*****-:*****-+**********++**********= -*****- +****+-+**********==**********++****+. :*****= -**********++*****.:*****=**********+=***********: ...... ...... .......... .................. ..... .................. ................ ........... */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () {} function _msgSender() internal view returns (address payable) { return payable (msg.sender); } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev 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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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 () { 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 Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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); } } } } library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } library ToStringLib { function toString(address account) internal pure returns(string memory) { return toString(abi.encodePacked(account)); } function toString(uint256 value) internal pure returns(string memory) { return toString(abi.encodePacked(value)); } function toString(bytes32 value) internal pure returns(string memory) { return toString(abi.encodePacked(value)); } function toString(bytes memory data) internal pure returns(string memory) { bytes memory alphabet = "0123456789abcdef"; bytes memory str = new bytes(2 + data.length * 2); str[0] = "0"; str[1] = "x"; for (uint i = 0; i < data.length; i++) { str[2+i*2] = alphabet[uint(uint8(data[i] >> 4))]; str[3+i*2] = alphabet[uint(uint8(data[i] & 0x0f))]; } return string(str); } } library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } contract HolyToken is Context, IERC20, Ownable, ReentrancyGuard { using Address for address; using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(string => uint256) private _transactions; uint private maxSupply = 10000000000 * (10 ** 18); //10,000,000,000 10 BILLION uint256 private _totalSupply; uint8 public _decimals; string public _symbol; string public _name; address accessAuthority = 0xA04885E222c1FF34e8E87601EE6e314166b35f33; constructor() { _name = "Holy Token"; _symbol = "HOLY"; _decimals = 18; _totalSupply = 0; } /* Defaults */ function getOwner() external override view returns (address) { return owner(); } function decimals() external override view returns (uint8) { return _decimals; } function symbol() external override view returns (string memory) { return _symbol; } function name() external override view returns (string memory) { return _name; } /* Supply */ function totalSupply() public override view returns (uint256) { return _totalSupply; } function balanceOf(address account) external override view returns (uint256) { return _balances[account]; } /* Token Flow */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) external override view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve fromm the zero address"); require(spender != address(0), "ERC20: approvee to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } /* Withdraw */ function isWithdrawAuthorised(string memory id, uint256 numberOfTokens, bytes memory signature) private view returns (bool) { bytes32 internalHash = keccak256(bytes(withdrawAccessor(id, numberOfTokens))); bytes32 messageHash = ECDSA.toEthSignedMessageHash(internalHash); return accessAuthority == ECDSA.recover(messageHash, signature); } function withdrawAccessor(string memory id, uint256 numberOfTokens) private view returns(string memory) { return string(abi.encodePacked(id, Strings.toString(numberOfTokens), ToStringLib.toString(address(this)), ToStringLib.toString(msg.sender))); } function withdraw(string memory id, uint256 numberOfTokens, bytes memory signature) public nonReentrant { internalWithdraw(id, numberOfTokens, signature); } function getTransactionAmount(string memory id) external view returns(uint256) { return _transactions[id]; } function batchWithdraw(string[] memory ids, uint256[] memory numberOfTokens, bytes[] memory signatures) external nonReentrant { require(ids.length == numberOfTokens.length && numberOfTokens.length == signatures.length, "Malformed data detected"); for (uint i = 0; i < ids.length; i++) { internalWithdraw(ids[i], numberOfTokens[i], signatures[i]); } } function internalWithdraw(string memory id, uint256 numberOfTokens, bytes memory signature) private { require(numberOfTokens > 0, "Withdraw must have a value greater than zero"); require(totalSupply() + numberOfTokens <= maxSupply, "Max supply reached"); require(_transactions[id] == 0, "Transaction id already used"); require(isWithdrawAuthorised(id, numberOfTokens, signature), "Unauthorised token withdraw"); _transactions[id] = numberOfTokens; _mint(msg.sender, numberOfTokens); } /* Owner */ function setAccessAuthority(address addr) external onlyOwner { accessAuthority = addr; } function setMaxSupply(uint newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function transferBalance() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } /* Fallbacks */ receive() external payable { } fallback() external payable { } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
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":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"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":"string[]","name":"ids","type":"string[]"},{"internalType":"uint256[]","name":"numberOfTokens","type":"uint256[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"name":"batchWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"id","type":"string"}],"name":"getTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"setAccessAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","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":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferBalance","outputs":[],"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"},{"inputs":[{"internalType":"string","name":"id","type":"string"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526b204fce5e3e2502611000000060055573a04885e222c1ff34e8e87601ee6e314166b35f33600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007657600080fd5b50600062000089620001f460201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600180819055506040518060400160405280600a81526020017f486f6c7920546f6b656e00000000000000000000000000000000000000000000815250600990805190602001906200017b929190620001fc565b506040518060400160405280600481526020017f484f4c590000000000000000000000000000000000000000000000000000000081525060089080519060200190620001c9929190620001fc565b506012600760006101000a81548160ff021916908360ff160217905550600060068190555062000311565b600033905090565b8280546200020a90620002ac565b90600052602060002090601f0160209004810192826200022e57600085556200027a565b82601f106200024957805160ff19168380011785556200027a565b828001600101855582156200027a579182015b82811115620002795782518255916020019190600101906200025c565b5b5090506200028991906200028d565b5090565b5b80821115620002a85760008160009055506001016200028e565b5090565b60006002820490506001821680620002c557607f821691505b60208210811415620002dc57620002db620002e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61400380620003216000396000f3fe60806040526004361061014f5760003560e01c8063741fd712116100b6578063b09f12661161006f578063b09f1266146104c2578063b54d5bed146104ed578063d212ae3914610516578063d28d885214610553578063dd62ed3e1461057e578063f2fde38b146105bb57610156565b8063741fd7121461039e578063893d20e8146103c75780638da5cb5b146103f257806395d89b411461041d578063a457c2d714610448578063a9059cbb1461048557610156565b806332424aa31161010857806332424aa31461027c57806339509351146102a757806342966c68146102e457806366adeb8c146103215780636f8b44b01461033857806370a082311461036157610156565b806306fdde0314610158578063095ea7b3146101835780630b28cac5146101c057806318160ddd146101e957806323b872dd14610214578063313ce5671461025157610156565b3661015657005b005b34801561016457600080fd5b5061016d6105e4565b60405161017a9190613781565b60405180910390f35b34801561018f57600080fd5b506101aa60048036038101906101a59190612d0c565b610676565b6040516101b79190613721565b60405180910390f35b3480156101cc57600080fd5b506101e760048036038101906101e29190612c58565b610694565b005b3480156101f557600080fd5b506101fe61076d565b60405161020b9190613a23565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190612cbd565b610777565b6040516102489190613721565b60405180910390f35b34801561025d57600080fd5b50610266610850565b6040516102739190613a3e565b60405180910390f35b34801561028857600080fd5b50610291610867565b60405161029e9190613a3e565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c99190612d0c565b61087a565b6040516102db9190613721565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612e9f565b61092d565b6040516103189190613721565b60405180910390f35b34801561032d57600080fd5b50610336610949565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612e9f565b610ae2565b005b34801561036d57600080fd5b5061038860048036038101906103839190612c58565b610b81565b6040516103959190613a23565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612d48565b610bca565b005b3480156103d357600080fd5b506103dc610d60565b6040516103e99190613706565b60405180910390f35b3480156103fe57600080fd5b50610407610d6f565b6040516104149190613706565b60405180910390f35b34801561042957600080fd5b50610432610d98565b60405161043f9190613781565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612d0c565b610e2a565b60405161047c9190613721565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190612d0c565b610ef7565b6040516104b99190613721565b60405180910390f35b3480156104ce57600080fd5b506104d7610f15565b6040516104e49190613781565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612e20565b610fa3565b005b34801561052257600080fd5b5061053d60048036038101906105389190612ddf565b611008565b60405161054a9190613a23565b60405180910390f35b34801561055f57600080fd5b50610568611030565b6040516105759190613781565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190612c81565b6110be565b6040516105b29190613a23565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190612c58565b611145565b005b6060600980546105f390613d56565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90613d56565b801561066c5780601f106106415761010080835404028352916020019161066c565b820191906000526020600020905b81548152906001019060200180831161064f57829003601f168201915b5050505050905090565b600061068a6106836111e6565b84846111ee565b6001905092915050565b61069c6111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072090613923565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600654905090565b60006107848484846113b9565b610845846107906111e6565b61084085604051806060016040528060288152602001613f8160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107f66111e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b6111ee565b600190509392505050565b6000600760009054906101000a900460ff16905090565b600760009054906101000a900460ff1681565b60006109236108876111e6565b8461091e85600360006108986111e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ab90919063ffffffff16565b6111ee565b6001905092915050565b600061094061093a6111e6565b83611709565b60019050919050565b6109516111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613923565b60405180910390fd5b60026001541415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906139e3565b60405180910390fd5b600260018190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610a52906136f1565b60006040518083038185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b5050905080610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906139a3565b60405180910390fd5b5060018081905550565b610aea6111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90613923565b60405180910390fd5b8060058190555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026001541415610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906139e3565b60405180910390fd5b600260018190555081518351148015610c2a575080518251145b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613883565b60405180910390fd5b60005b8351811015610d5357610d40848281518110610cb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848381518110610cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848481518110610d33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516118ad565b8080610d4b90613d88565b915050610c6c565b5060018081905550505050565b6000610d6a610d6f565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054610da790613d56565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd390613d56565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b6000610eed610e376111e6565b84610ee885604051806060016040528060258152602001613fa96025913960036000610e616111e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b6111ee565b6001905092915050565b6000610f0b610f046111e6565b84846113b9565b6001905092915050565b60088054610f2290613d56565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90613d56565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b60026001541415610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906139e3565b60405180910390fd5b6002600181905550610ffc8383836118ad565b60018081905550505050565b600060048260405161101a9190613676565b9081526020016040518091039020549050919050565b6009805461103d90613d56565b80601f016020809104026020016040519081016040528092919081815260200182805461106990613d56565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b505050505081565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114d6111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613923565b60405180910390fd5b6111e381611a24565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906137e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613943565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113ac9190613a23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906137c3565b60405180910390fd5b61150581604051806060016040528060268152602001613f5b60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061159a81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ab90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161163a9190613a23565b60405180910390a3505050565b600083831115829061168f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116869190613781565b60405180910390fd5b506000838561169e9190613c81565b9050809150509392505050565b60008082846116ba9190613ba0565b9050838110156116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f690613863565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613963565b60405180910390fd5b6117e581604051806060016040528060228152602001613f3960229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183d81600654611b5190919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118a19190613a23565b60405180910390a35050565b600082116118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e7906138a3565b60405180910390fd5b600554826118fc61076d565b6119069190613ba0565b1115611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e906139c3565b60405180910390fd5b60006004846040516119599190613676565b908152602001604051809103902054146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90613823565b60405180910390fd5b6119b3838383611b9b565b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906138e3565b60405180910390fd5b81600484604051611a039190613676565b908152602001604051809103902081905550611a1f3383611c23565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613843565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611b9383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611647565b905092915050565b600080611ba88585611dad565b8051906020012090506000611bbc82611df5565b9050611bc88185611e25565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613a03565b60405180910390fd5b611ca8816006546116ab90919063ffffffff16565b600681905550611d0081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ab90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611da19190613a23565b60405180910390a35050565b606082611db983611e4c565b611dc230611ff9565b611dcb33611ff9565b604051602001611dde949392919061368d565b604051602081830303815290604052905092915050565b600081604051602001611e0891906136cb565b604051602081830303815290604052805190602001209050919050565b6000806000611e34858561202a565b91509150611e41816120ad565b819250505092915050565b60606000821415611e94576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff4565b600082905060005b60008214611ec6578080611eaf90613d88565b915050600a82611ebf9190613bf6565b9150611e9c565b60008167ffffffffffffffff811115611f08577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f3a5781602001600182028036833780820191505090505b5090505b60008514611fed57600182611f539190613c81565b9150600a85611f629190613dff565b6030611f6e9190613ba0565b60f81b818381518110611faa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe69190613bf6565b9450611f3e565b8093505050505b919050565b60606120238260405160200161200f919061365b565b6040516020818303038152906040526123fe565b9050919050565b60008060418351141561206c5760008060006020860151925060408601519150606086015160001a90506120608782858561284e565b945094505050506120a6565b60408351141561209d57600080602085015191506040850151905061209286838361295b565b9350935050506120a6565b60006002915091505b9250929050565b600060048111156120e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612120577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561212b576123fb565b60016004811115612165577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561219e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d6906137a3565b60405180910390fd5b60026004811115612219577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612252577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a90613803565b60405180910390fd5b600360048111156122cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612306577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906138c3565b60405180910390fd5b600480811115612380577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156123b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613903565b60405180910390fd5b5b50565b606060006040518060400160405280601081526020017f3031323334353637383961626364656600000000000000000000000000000000815250905060006002845161244a9190613c27565b60026124569190613ba0565b67ffffffffffffffff811115612495577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124c75781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612525577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106125af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b845181101561284357826004868381518110612626577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110612692577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b826002836126ab9190613c27565b60026126b79190613ba0565b815181106126ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b86838151811061275c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff16815181106127a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b826002836127be9190613c27565b60036127ca9190613ba0565b81518110612801577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061283b90613d88565b9150506125e1565b508092505050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612889576000600391509150612952565b601b8560ff16141580156128a15750601c8560ff1614155b156128b3576000600491509150612952565b6000600187878787604051600081526020016040526040516128d8949392919061373c565b6020604051602081039080840390855afa1580156128fa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561294957600060019250925050612952565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61299e9190613ba0565b90506129ac8782888561284e565b935093505050935093915050565b60006129cd6129c884613a8a565b613a59565b9050808382526020820190508260005b85811015612a0d57813585016129f38882612bef565b8452602084019350602083019250506001810190506129dd565b5050509392505050565b6000612a2a612a2584613ab6565b613a59565b9050808382526020820190508260005b85811015612a6a5781358501612a508882612c19565b845260208401935060208301925050600181019050612a3a565b5050509392505050565b6000612a87612a8284613ae2565b613a59565b90508083825260208201905082856020860282011115612aa657600080fd5b60005b85811015612ad65781612abc8882612c43565b845260208401935060208301925050600181019050612aa9565b5050509392505050565b6000612af3612aee84613b0e565b613a59565b905082815260208101848484011115612b0b57600080fd5b612b16848285613d14565b509392505050565b6000612b31612b2c84613b3e565b613a59565b905082815260208101848484011115612b4957600080fd5b612b54848285613d14565b509392505050565b600081359050612b6b81613f0a565b92915050565b600082601f830112612b8257600080fd5b8135612b928482602086016129ba565b91505092915050565b600082601f830112612bac57600080fd5b8135612bbc848260208601612a17565b91505092915050565b600082601f830112612bd657600080fd5b8135612be6848260208601612a74565b91505092915050565b600082601f830112612c0057600080fd5b8135612c10848260208601612ae0565b91505092915050565b600082601f830112612c2a57600080fd5b8135612c3a848260208601612b1e565b91505092915050565b600081359050612c5281613f21565b92915050565b600060208284031215612c6a57600080fd5b6000612c7884828501612b5c565b91505092915050565b60008060408385031215612c9457600080fd5b6000612ca285828601612b5c565b9250506020612cb385828601612b5c565b9150509250929050565b600080600060608486031215612cd257600080fd5b6000612ce086828701612b5c565b9350506020612cf186828701612b5c565b9250506040612d0286828701612c43565b9150509250925092565b60008060408385031215612d1f57600080fd5b6000612d2d85828601612b5c565b9250506020612d3e85828601612c43565b9150509250929050565b600080600060608486031215612d5d57600080fd5b600084013567ffffffffffffffff811115612d7757600080fd5b612d8386828701612b9b565b935050602084013567ffffffffffffffff811115612da057600080fd5b612dac86828701612bc5565b925050604084013567ffffffffffffffff811115612dc957600080fd5b612dd586828701612b71565b9150509250925092565b600060208284031215612df157600080fd5b600082013567ffffffffffffffff811115612e0b57600080fd5b612e1784828501612c19565b91505092915050565b600080600060608486031215612e3557600080fd5b600084013567ffffffffffffffff811115612e4f57600080fd5b612e5b86828701612c19565b9350506020612e6c86828701612c43565b925050604084013567ffffffffffffffff811115612e8957600080fd5b612e9586828701612bef565b9150509250925092565b600060208284031215612eb157600080fd5b6000612ebf84828501612c43565b91505092915050565b612ed181613cb5565b82525050565b612ee8612ee382613cb5565b613dd1565b82525050565b612ef781613cc7565b82525050565b612f0681613cd3565b82525050565b612f1d612f1882613cd3565b613de3565b82525050565b6000612f2e82613b6e565b612f388185613b84565b9350612f48818560208601613d23565b612f5181613eec565b840191505092915050565b6000612f6782613b6e565b612f718185613b95565b9350612f81818560208601613d23565b80840191505092915050565b6000612f9a601883613b84565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000612fda602383613b84565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613040602583613b84565b91507f45524332303a20617070726f76652066726f6d6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130a6601f83613b84565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b60006130e6601c83613b95565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b6000613126601b83613b84565b91507f5472616e73616374696f6e20696420616c7265616479207573656400000000006000830152602082019050919050565b6000613166602683613b84565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131cc601b83613b84565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061320c601783613b84565b91507f4d616c666f726d656420646174612064657465637465640000000000000000006000830152602082019050919050565b600061324c602c83613b84565b91507f5769746864726177206d757374206861766520612076616c756520677265617460008301527f6572207468616e207a65726f00000000000000000000000000000000000000006020830152604082019050919050565b60006132b2602283613b84565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613318601b83613b84565b91507f556e617574686f726973656420746f6b656e20776974686472617700000000006000830152602082019050919050565b6000613358602283613b84565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133be602083613b84565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006133fe602383613b84565b91507f45524332303a20617070726f76656520746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613464602183613b84565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ca602583613b84565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613530600083613b79565b9150600082019050919050565b600061354a601083613b84565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b600061358a601283613b84565b91507f4d617820737570706c79207265616368656400000000000000000000000000006000830152602082019050919050565b60006135ca601f83613b84565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b600061360a601f83613b84565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61364681613cfd565b82525050565b61365581613d07565b82525050565b60006136678284612ed7565b60148201915081905092915050565b60006136828284612f5c565b915081905092915050565b60006136998287612f5c565b91506136a58286612f5c565b91506136b18285612f5c565b91506136bd8284612f5c565b915081905095945050505050565b60006136d6826130d9565b91506136e28284612f0c565b60208201915081905092915050565b60006136fc82613523565b9150819050919050565b600060208201905061371b6000830184612ec8565b92915050565b60006020820190506137366000830184612eee565b92915050565b60006080820190506137516000830187612efd565b61375e602083018661364c565b61376b6040830185612efd565b6137786060830184612efd565b95945050505050565b6000602082019050818103600083015261379b8184612f23565b905092915050565b600060208201905081810360008301526137bc81612f8d565b9050919050565b600060208201905081810360008301526137dc81612fcd565b9050919050565b600060208201905081810360008301526137fc81613033565b9050919050565b6000602082019050818103600083015261381c81613099565b9050919050565b6000602082019050818103600083015261383c81613119565b9050919050565b6000602082019050818103600083015261385c81613159565b9050919050565b6000602082019050818103600083015261387c816131bf565b9050919050565b6000602082019050818103600083015261389c816131ff565b9050919050565b600060208201905081810360008301526138bc8161323f565b9050919050565b600060208201905081810360008301526138dc816132a5565b9050919050565b600060208201905081810360008301526138fc8161330b565b9050919050565b6000602082019050818103600083015261391c8161334b565b9050919050565b6000602082019050818103600083015261393c816133b1565b9050919050565b6000602082019050818103600083015261395c816133f1565b9050919050565b6000602082019050818103600083015261397c81613457565b9050919050565b6000602082019050818103600083015261399c816134bd565b9050919050565b600060208201905081810360008301526139bc8161353d565b9050919050565b600060208201905081810360008301526139dc8161357d565b9050919050565b600060208201905081810360008301526139fc816135bd565b9050919050565b60006020820190508181036000830152613a1c816135fd565b9050919050565b6000602082019050613a38600083018461363d565b92915050565b6000602082019050613a53600083018461364c565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a8057613a7f613ebd565b5b8060405250919050565b600067ffffffffffffffff821115613aa557613aa4613ebd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ad157613ad0613ebd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613afd57613afc613ebd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b2957613b28613ebd565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613b5957613b58613ebd565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bab82613cfd565b9150613bb683613cfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613beb57613bea613e30565b5b828201905092915050565b6000613c0182613cfd565b9150613c0c83613cfd565b925082613c1c57613c1b613e5f565b5b828204905092915050565b6000613c3282613cfd565b9150613c3d83613cfd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7657613c75613e30565b5b828202905092915050565b6000613c8c82613cfd565b9150613c9783613cfd565b925082821015613caa57613ca9613e30565b5b828203905092915050565b6000613cc082613cdd565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613d41578082015181840152602081019050613d26565b83811115613d50576000848401525b50505050565b60006002820490506001821680613d6e57607f821691505b60208210811415613d8257613d81613e8e565b5b50919050565b6000613d9382613cfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dc657613dc5613e30565b5b600182019050919050565b6000613ddc82613ded565b9050919050565b6000819050919050565b6000613df882613efd565b9050919050565b6000613e0a82613cfd565b9150613e1583613cfd565b925082613e2557613e24613e5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b613f1381613cb5565b8114613f1e57600080fd5b50565b613f2a81613cfd565b8114613f3557600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122041f80637df8055a8144bd9642187b61514b93fa90997eb363ef64805e5b106a064736f6c63430008000033
Deployed Bytecode
0x60806040526004361061014f5760003560e01c8063741fd712116100b6578063b09f12661161006f578063b09f1266146104c2578063b54d5bed146104ed578063d212ae3914610516578063d28d885214610553578063dd62ed3e1461057e578063f2fde38b146105bb57610156565b8063741fd7121461039e578063893d20e8146103c75780638da5cb5b146103f257806395d89b411461041d578063a457c2d714610448578063a9059cbb1461048557610156565b806332424aa31161010857806332424aa31461027c57806339509351146102a757806342966c68146102e457806366adeb8c146103215780636f8b44b01461033857806370a082311461036157610156565b806306fdde0314610158578063095ea7b3146101835780630b28cac5146101c057806318160ddd146101e957806323b872dd14610214578063313ce5671461025157610156565b3661015657005b005b34801561016457600080fd5b5061016d6105e4565b60405161017a9190613781565b60405180910390f35b34801561018f57600080fd5b506101aa60048036038101906101a59190612d0c565b610676565b6040516101b79190613721565b60405180910390f35b3480156101cc57600080fd5b506101e760048036038101906101e29190612c58565b610694565b005b3480156101f557600080fd5b506101fe61076d565b60405161020b9190613a23565b60405180910390f35b34801561022057600080fd5b5061023b60048036038101906102369190612cbd565b610777565b6040516102489190613721565b60405180910390f35b34801561025d57600080fd5b50610266610850565b6040516102739190613a3e565b60405180910390f35b34801561028857600080fd5b50610291610867565b60405161029e9190613a3e565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c99190612d0c565b61087a565b6040516102db9190613721565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612e9f565b61092d565b6040516103189190613721565b60405180910390f35b34801561032d57600080fd5b50610336610949565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612e9f565b610ae2565b005b34801561036d57600080fd5b5061038860048036038101906103839190612c58565b610b81565b6040516103959190613a23565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612d48565b610bca565b005b3480156103d357600080fd5b506103dc610d60565b6040516103e99190613706565b60405180910390f35b3480156103fe57600080fd5b50610407610d6f565b6040516104149190613706565b60405180910390f35b34801561042957600080fd5b50610432610d98565b60405161043f9190613781565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612d0c565b610e2a565b60405161047c9190613721565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a79190612d0c565b610ef7565b6040516104b99190613721565b60405180910390f35b3480156104ce57600080fd5b506104d7610f15565b6040516104e49190613781565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612e20565b610fa3565b005b34801561052257600080fd5b5061053d60048036038101906105389190612ddf565b611008565b60405161054a9190613a23565b60405180910390f35b34801561055f57600080fd5b50610568611030565b6040516105759190613781565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190612c81565b6110be565b6040516105b29190613a23565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190612c58565b611145565b005b6060600980546105f390613d56565b80601f016020809104026020016040519081016040528092919081815260200182805461061f90613d56565b801561066c5780601f106106415761010080835404028352916020019161066c565b820191906000526020600020905b81548152906001019060200180831161064f57829003601f168201915b5050505050905090565b600061068a6106836111e6565b84846111ee565b6001905092915050565b61069c6111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072090613923565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600654905090565b60006107848484846113b9565b610845846107906111e6565b61084085604051806060016040528060288152602001613f8160289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006107f66111e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b6111ee565b600190509392505050565b6000600760009054906101000a900460ff16905090565b600760009054906101000a900460ff1681565b60006109236108876111e6565b8461091e85600360006108986111e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ab90919063ffffffff16565b6111ee565b6001905092915050565b600061094061093a6111e6565b83611709565b60019050919050565b6109516111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590613923565b60405180910390fd5b60026001541415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906139e3565b60405180910390fd5b600260018190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610a52906136f1565b60006040518083038185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b5050905080610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf906139a3565b60405180910390fd5b5060018081905550565b610aea6111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90613923565b60405180910390fd5b8060058190555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026001541415610c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c07906139e3565b60405180910390fd5b600260018190555081518351148015610c2a575080518251145b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613883565b60405180910390fd5b60005b8351811015610d5357610d40848281518110610cb1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848381518110610cf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848481518110610d33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516118ad565b8080610d4b90613d88565b915050610c6c565b5060018081905550505050565b6000610d6a610d6f565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054610da790613d56565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd390613d56565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b6000610eed610e376111e6565b84610ee885604051806060016040528060258152602001613fa96025913960036000610e616111e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b6111ee565b6001905092915050565b6000610f0b610f046111e6565b84846113b9565b6001905092915050565b60088054610f2290613d56565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4e90613d56565b8015610f9b5780601f10610f7057610100808354040283529160200191610f9b565b820191906000526020600020905b815481529060010190602001808311610f7e57829003601f168201915b505050505081565b60026001541415610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe0906139e3565b60405180910390fd5b6002600181905550610ffc8383836118ad565b60018081905550505050565b600060048260405161101a9190613676565b9081526020016040518091039020549050919050565b6009805461103d90613d56565b80601f016020809104026020016040519081016040528092919081815260200182805461106990613d56565b80156110b65780601f1061108b576101008083540402835291602001916110b6565b820191906000526020600020905b81548152906001019060200180831161109957829003601f168201915b505050505081565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61114d6111e6565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613923565b60405180910390fd5b6111e381611a24565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906137e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613943565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113ac9190613a23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611490906137c3565b60405180910390fd5b61150581604051806060016040528060268152602001613f5b60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061159a81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ab90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161163a9190613a23565b60405180910390a3505050565b600083831115829061168f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116869190613781565b60405180910390fd5b506000838561169e9190613c81565b9050809150509392505050565b60008082846116ba9190613ba0565b9050838110156116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f690613863565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613963565b60405180910390fd5b6117e581604051806060016040528060228152602001613f3960229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116479092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061183d81600654611b5190919063ffffffff16565b600681905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118a19190613a23565b60405180910390a35050565b600082116118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e7906138a3565b60405180910390fd5b600554826118fc61076d565b6119069190613ba0565b1115611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e906139c3565b60405180910390fd5b60006004846040516119599190613676565b908152602001604051809103902054146119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f90613823565b60405180910390fd5b6119b3838383611b9b565b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906138e3565b60405180910390fd5b81600484604051611a039190613676565b908152602001604051809103902081905550611a1f3383611c23565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90613843565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611b9383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611647565b905092915050565b600080611ba88585611dad565b8051906020012090506000611bbc82611df5565b9050611bc88185611e25565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90613a03565b60405180910390fd5b611ca8816006546116ab90919063ffffffff16565b600681905550611d0081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116ab90919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611da19190613a23565b60405180910390a35050565b606082611db983611e4c565b611dc230611ff9565b611dcb33611ff9565b604051602001611dde949392919061368d565b604051602081830303815290604052905092915050565b600081604051602001611e0891906136cb565b604051602081830303815290604052805190602001209050919050565b6000806000611e34858561202a565b91509150611e41816120ad565b819250505092915050565b60606000821415611e94576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ff4565b600082905060005b60008214611ec6578080611eaf90613d88565b915050600a82611ebf9190613bf6565b9150611e9c565b60008167ffffffffffffffff811115611f08577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f3a5781602001600182028036833780820191505090505b5090505b60008514611fed57600182611f539190613c81565b9150600a85611f629190613dff565b6030611f6e9190613ba0565b60f81b818381518110611faa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fe69190613bf6565b9450611f3e565b8093505050505b919050565b60606120238260405160200161200f919061365b565b6040516020818303038152906040526123fe565b9050919050565b60008060418351141561206c5760008060006020860151925060408601519150606086015160001a90506120608782858561284e565b945094505050506120a6565b60408351141561209d57600080602085015191506040850151905061209286838361295b565b9350935050506120a6565b60006002915091505b9250929050565b600060048111156120e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612120577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561212b576123fb565b60016004811115612165577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b81600481111561219e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156121df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d6906137a3565b60405180910390fd5b60026004811115612219577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612252577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228a90613803565b60405180910390fd5b600360048111156122cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115612306577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415612347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233e906138c3565b60405180910390fd5b600480811115612380577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156123b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613903565b60405180910390fd5b5b50565b606060006040518060400160405280601081526020017f3031323334353637383961626364656600000000000000000000000000000000815250905060006002845161244a9190613c27565b60026124569190613ba0565b67ffffffffffffffff811115612495577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124c75781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612525577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106125af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b845181101561284357826004868381518110612626577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110612692577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b826002836126ab9190613c27565b60026126b79190613ba0565b815181106126ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b86838151811061275c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff16815181106127a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b826002836127be9190613c27565b60036127ca9190613ba0565b81518110612801577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061283b90613d88565b9150506125e1565b508092505050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612889576000600391509150612952565b601b8560ff16141580156128a15750601c8560ff1614155b156128b3576000600491509150612952565b6000600187878787604051600081526020016040526040516128d8949392919061373c565b6020604051602081039080840390855afa1580156128fa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561294957600060019250925050612952565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61299e9190613ba0565b90506129ac8782888561284e565b935093505050935093915050565b60006129cd6129c884613a8a565b613a59565b9050808382526020820190508260005b85811015612a0d57813585016129f38882612bef565b8452602084019350602083019250506001810190506129dd565b5050509392505050565b6000612a2a612a2584613ab6565b613a59565b9050808382526020820190508260005b85811015612a6a5781358501612a508882612c19565b845260208401935060208301925050600181019050612a3a565b5050509392505050565b6000612a87612a8284613ae2565b613a59565b90508083825260208201905082856020860282011115612aa657600080fd5b60005b85811015612ad65781612abc8882612c43565b845260208401935060208301925050600181019050612aa9565b5050509392505050565b6000612af3612aee84613b0e565b613a59565b905082815260208101848484011115612b0b57600080fd5b612b16848285613d14565b509392505050565b6000612b31612b2c84613b3e565b613a59565b905082815260208101848484011115612b4957600080fd5b612b54848285613d14565b509392505050565b600081359050612b6b81613f0a565b92915050565b600082601f830112612b8257600080fd5b8135612b928482602086016129ba565b91505092915050565b600082601f830112612bac57600080fd5b8135612bbc848260208601612a17565b91505092915050565b600082601f830112612bd657600080fd5b8135612be6848260208601612a74565b91505092915050565b600082601f830112612c0057600080fd5b8135612c10848260208601612ae0565b91505092915050565b600082601f830112612c2a57600080fd5b8135612c3a848260208601612b1e565b91505092915050565b600081359050612c5281613f21565b92915050565b600060208284031215612c6a57600080fd5b6000612c7884828501612b5c565b91505092915050565b60008060408385031215612c9457600080fd5b6000612ca285828601612b5c565b9250506020612cb385828601612b5c565b9150509250929050565b600080600060608486031215612cd257600080fd5b6000612ce086828701612b5c565b9350506020612cf186828701612b5c565b9250506040612d0286828701612c43565b9150509250925092565b60008060408385031215612d1f57600080fd5b6000612d2d85828601612b5c565b9250506020612d3e85828601612c43565b9150509250929050565b600080600060608486031215612d5d57600080fd5b600084013567ffffffffffffffff811115612d7757600080fd5b612d8386828701612b9b565b935050602084013567ffffffffffffffff811115612da057600080fd5b612dac86828701612bc5565b925050604084013567ffffffffffffffff811115612dc957600080fd5b612dd586828701612b71565b9150509250925092565b600060208284031215612df157600080fd5b600082013567ffffffffffffffff811115612e0b57600080fd5b612e1784828501612c19565b91505092915050565b600080600060608486031215612e3557600080fd5b600084013567ffffffffffffffff811115612e4f57600080fd5b612e5b86828701612c19565b9350506020612e6c86828701612c43565b925050604084013567ffffffffffffffff811115612e8957600080fd5b612e9586828701612bef565b9150509250925092565b600060208284031215612eb157600080fd5b6000612ebf84828501612c43565b91505092915050565b612ed181613cb5565b82525050565b612ee8612ee382613cb5565b613dd1565b82525050565b612ef781613cc7565b82525050565b612f0681613cd3565b82525050565b612f1d612f1882613cd3565b613de3565b82525050565b6000612f2e82613b6e565b612f388185613b84565b9350612f48818560208601613d23565b612f5181613eec565b840191505092915050565b6000612f6782613b6e565b612f718185613b95565b9350612f81818560208601613d23565b80840191505092915050565b6000612f9a601883613b84565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000612fda602383613b84565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613040602583613b84565b91507f45524332303a20617070726f76652066726f6d6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130a6601f83613b84565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b60006130e6601c83613b95565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b6000613126601b83613b84565b91507f5472616e73616374696f6e20696420616c7265616479207573656400000000006000830152602082019050919050565b6000613166602683613b84565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131cc601b83613b84565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061320c601783613b84565b91507f4d616c666f726d656420646174612064657465637465640000000000000000006000830152602082019050919050565b600061324c602c83613b84565b91507f5769746864726177206d757374206861766520612076616c756520677265617460008301527f6572207468616e207a65726f00000000000000000000000000000000000000006020830152604082019050919050565b60006132b2602283613b84565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613318601b83613b84565b91507f556e617574686f726973656420746f6b656e20776974686472617700000000006000830152602082019050919050565b6000613358602283613b84565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133be602083613b84565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006133fe602383613b84565b91507f45524332303a20617070726f76656520746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613464602183613b84565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ca602583613b84565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613530600083613b79565b9150600082019050919050565b600061354a601083613b84565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b600061358a601283613b84565b91507f4d617820737570706c79207265616368656400000000000000000000000000006000830152602082019050919050565b60006135ca601f83613b84565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b600061360a601f83613b84565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61364681613cfd565b82525050565b61365581613d07565b82525050565b60006136678284612ed7565b60148201915081905092915050565b60006136828284612f5c565b915081905092915050565b60006136998287612f5c565b91506136a58286612f5c565b91506136b18285612f5c565b91506136bd8284612f5c565b915081905095945050505050565b60006136d6826130d9565b91506136e28284612f0c565b60208201915081905092915050565b60006136fc82613523565b9150819050919050565b600060208201905061371b6000830184612ec8565b92915050565b60006020820190506137366000830184612eee565b92915050565b60006080820190506137516000830187612efd565b61375e602083018661364c565b61376b6040830185612efd565b6137786060830184612efd565b95945050505050565b6000602082019050818103600083015261379b8184612f23565b905092915050565b600060208201905081810360008301526137bc81612f8d565b9050919050565b600060208201905081810360008301526137dc81612fcd565b9050919050565b600060208201905081810360008301526137fc81613033565b9050919050565b6000602082019050818103600083015261381c81613099565b9050919050565b6000602082019050818103600083015261383c81613119565b9050919050565b6000602082019050818103600083015261385c81613159565b9050919050565b6000602082019050818103600083015261387c816131bf565b9050919050565b6000602082019050818103600083015261389c816131ff565b9050919050565b600060208201905081810360008301526138bc8161323f565b9050919050565b600060208201905081810360008301526138dc816132a5565b9050919050565b600060208201905081810360008301526138fc8161330b565b9050919050565b6000602082019050818103600083015261391c8161334b565b9050919050565b6000602082019050818103600083015261393c816133b1565b9050919050565b6000602082019050818103600083015261395c816133f1565b9050919050565b6000602082019050818103600083015261397c81613457565b9050919050565b6000602082019050818103600083015261399c816134bd565b9050919050565b600060208201905081810360008301526139bc8161353d565b9050919050565b600060208201905081810360008301526139dc8161357d565b9050919050565b600060208201905081810360008301526139fc816135bd565b9050919050565b60006020820190508181036000830152613a1c816135fd565b9050919050565b6000602082019050613a38600083018461363d565b92915050565b6000602082019050613a53600083018461364c565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a8057613a7f613ebd565b5b8060405250919050565b600067ffffffffffffffff821115613aa557613aa4613ebd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ad157613ad0613ebd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613afd57613afc613ebd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613b2957613b28613ebd565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613b5957613b58613ebd565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bab82613cfd565b9150613bb683613cfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613beb57613bea613e30565b5b828201905092915050565b6000613c0182613cfd565b9150613c0c83613cfd565b925082613c1c57613c1b613e5f565b5b828204905092915050565b6000613c3282613cfd565b9150613c3d83613cfd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7657613c75613e30565b5b828202905092915050565b6000613c8c82613cfd565b9150613c9783613cfd565b925082821015613caa57613ca9613e30565b5b828203905092915050565b6000613cc082613cdd565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613d41578082015181840152602081019050613d26565b83811115613d50576000848401525b50505050565b60006002820490506001821680613d6e57607f821691505b60208210811415613d8257613d81613e8e565b5b50919050565b6000613d9382613cfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dc657613dc5613e30565b5b600182019050919050565b6000613ddc82613ded565b9050919050565b6000819050919050565b6000613df882613efd565b9050919050565b6000613e0a82613cfd565b9150613e1583613cfd565b925082613e2557613e24613e5f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b613f1381613cb5565b8114613f1e57600080fd5b50565b613f2a81613cfd565b8114613f3557600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122041f80637df8055a8144bd9642187b61514b93fa90997eb363ef64805e5b106a064736f6c63430008000033
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.