ERC-20
Overview
Max Total Supply
100,000,000,000 FTL
Holders
137
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000002 FTLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Fractal
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-14 */ /** */ // Sources flattened with hardhat v2.19.1 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // http://www.fractalcoin.finance/ // https://t.me/fractalfinanceeth // https://twitter.com/fractalerc20 pragma solidity ^0.8.0; /** * @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; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @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 { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override 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 `amount`. */ function transfer( address to, uint256 amount ) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount ) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCallWithValue( target, data, 0, "Address: low-level call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert( bytes memory returndata, string memory errorMessage ) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transfer.selector, to, value) ); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, value) ); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, oldAllowance + value ) ); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require( oldAllowance >= value, "SafeERC20: decreased allowance below zero" ); _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, oldAllowance - value ) ); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove( IERC20 token, address spender, uint256 value ) internal { bytes memory approvalCall = abi.encodeWithSelector( token.approve.selector, spender, value ); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, 0) ); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require( nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed" ); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall( data, "SafeERC20: low-level call failed" ); require( returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed" ); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool( IERC20 token, bytes memory data ) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File contracts/token/AntiBotHelper.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @notice Anti-Bot Helper * Max TX Amount feature * Max Wallet Amount feature */ abstract contract AntiBotHelper is Ownable { /// @dev Minimum value that can be set for the max transaction limit - 0.25% uint16 private constant MIN__MAX_TX_LIMIT = 25; /// @dev Maximum value that can be set for the max transaction limit - 100% uint16 private constant MAX__MAX_TX_LIMIT = 10000; /// @dev Minimum value that can be set for the max hold limit - 0.25% uint16 private constant MIN__MAX_HOLD_LIMIT = 25; /// @dev Maximum value that can be set for the max hold limit - 100% uint16 private constant MAX__MAX_HOLD_LIMIT = 10000; uint16 internal _maxTxLimit = 200; // default 2% uint16 internal _maxHoldLimit = 200; // default 2% /// @dev trading enabled flag. default false bool internal _tradingEnabled; mapping(address => bool) internal _isExcludedFromTxLimit; mapping(address => bool) internal _isExcludedFromHoldLimit; event ExcludedFromHoldLimit(address account, bool flag); event ExcludedFromTxLimit(address account, bool flag); event MaxLimitUpdated(uint16 maxHoldLimit, uint16 maxTxLimit); event TradingEnabled(); /// @notice Exclude / Include the multiple accounts from max tx limit /// @dev Only callable by owner function batchExcludeFromTxLimit( address[] calldata accounts, bool flag ) external onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; ) { address account = accounts[i]; _isExcludedFromTxLimit[account] = flag; unchecked { ++i; } emit ExcludedFromTxLimit(account, flag); } } /// @notice Exclude / Include the multiple accounts from max wallet limit /// @dev Only callable by owner function batchExcludeFromHoldLimit( address[] calldata accounts, bool flag ) external onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; ) { address account = accounts[i]; _isExcludedFromHoldLimit[account] = flag; unchecked { ++i; } emit ExcludedFromHoldLimit(account, flag); } } /// @notice Check if the account is excluded from max hold & wallet limit /// @return bool excluded from max hold limit /// @return bool excluded from max tx limit function isExcludedFromLimit( address account ) external view returns (bool, bool) { return ( _isExcludedFromHoldLimit[account], _isExcludedFromTxLimit[account] ); } /// @notice Update max hold limit & max tx limit /// @param holdLimit new max hold limit /// @param txLimit new max tx limit function updateMaxLimit( uint16 holdLimit, uint16 txLimit ) external onlyOwner { require(holdLimit >= txLimit, "tx limit exceeds hold limit"); require( _maxHoldLimit <= holdLimit && _maxTxLimit <= txLimit, "increase only" ); require(txLimit <= MAX__MAX_TX_LIMIT, "tx limit out of range"); require(holdLimit <= MAX__MAX_HOLD_LIMIT, "hold limit out of range"); _maxHoldLimit = holdLimit; _maxTxLimit = txLimit; emit MaxLimitUpdated(holdLimit, txLimit); } /// @notice View max hold limit & max tx limit /// @return uint16 max hold limit percent /// @return uint16 max tx limit percent function maxLimit() external view returns (uint16, uint16) { return (_maxHoldLimit, _maxTxLimit); } /// @notice Enable trading function enableTrading() external onlyOwner { require(!_tradingEnabled, "already enabled"); _tradingEnabled = true; emit TradingEnabled(); } /// @notice Check if the trading is enabled now function isTradingEnabled() external view returns (bool) { return _tradingEnabled; } } // File contracts/interfaces/IUniswapAmm.sol // Original license: SPDX_License_Identifier: MIT // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity ^0.8.4; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol 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); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol 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; } // File contracts/token/TaxHelper.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @notice Tax Helper * Marketing fee * Burn fee * Fee in buy/sell/transfer separately */ abstract contract TaxHelper is Ownable { /// @dev Max buy tax after token launched. 10% uint16 private constant MAX_BUY_TAX_AFTER = 1000; /// @dev Max sell tax after token launched. 10% uint16 private constant MAX_SELL_TAX_AFTER = 1000; /// @dev Project tax is set on top buy / sell tax as a service fee. 15% uint16 internal constant PROJECT_TAX = 1500; /// @dev Project tax is removed after 30 days uint256 internal constant PROJECT_TAX_PERIOD = 30 days; /// @dev Project tax receive wallet address payable internal constant PROJECT_WALLET = payable(0xcd443a0950f1842c7BE8A6c31FCEBf2FF22EbEdc); bool internal _projectTaxApplied = true; /// @dev Buy tax default 25% uint16 internal _buyTax = 2500; /// @dev Sell tax default 25% uint16 internal _sellTax = 2500; address payable internal _marketingWallet; mapping(address => bool) internal _isExcludedFromTax; mapping(address => bool) internal _isAmmPair; event ExcludedFromTax(address account, bool flag); event MarketingWalletUpdated(address marketingWallet); event NewAmmPair(address pair, bool flag); event TaxesUpdated(uint16 buyTax, uint16 sellTax); /// @notice Update buy / sell / treasury tax /// @dev new tax values should not be greater than the `taxAfterLimit` /// @param buyTax new buy tax value /// @param sellTax new sell tax value function updateTaxes(uint16 buyTax, uint16 sellTax) external onlyOwner { // gas-saving code uint16 buyTax_ = _buyTax; uint16 sellTax_ = _sellTax; if (buyTax > buyTax_) require(buyTax <= MAX_BUY_TAX_AFTER, "invalid buyTax"); if (sellTax > sellTax_) require(sellTax <= MAX_SELL_TAX_AFTER, "invalid sellTax"); _buyTax = buyTax; _sellTax = sellTax; emit TaxesUpdated(buyTax, sellTax); } /// @notice View taxes applied to the token /// @return uint16 {_buyTax} /// @return uint16 {_sellTax} function taxes() external view returns (uint16, uint16) { return (_buyTax, _sellTax); } /// @notice Update marketing wallet function updateMarketingWallet( address payable newWallet ) external onlyOwner { require(_marketingWallet != newWallet, "nothing changed"); require(newWallet != address(0), "invalid wallet"); _marketingWallet = newWallet; emit MarketingWalletUpdated(newWallet); } /// @notice View current marketing wallet function marketingWallet() external view returns (address payable) { return _marketingWallet; } /// @notice Exclude / Include the multiple accounts from tax /// @dev Only callable by owner function batchExcludeFromTax( address[] calldata accounts, bool flag ) external onlyOwner { uint256 len = accounts.length; for (uint256 i; i < len; ) { address account = accounts[i]; _isExcludedFromTax[account] = flag; unchecked { ++i; } emit ExcludedFromTax(account, flag); } } /// @notice Check if the account is excluded from the fees /// @param account: the account to be checked function isExcludedFromTax(address account) external view returns (bool) { return _isExcludedFromTax[account]; } /// @notice Check if the {pair} is AMM pair function isAmmPair(address pair) external view returns (bool) { return _isAmmPair[pair]; } /** * @dev function {taxLimits} * * Return tax limits compared with current value and taxAfterLimits * * @return uint16 max buy tax limit * @return uint16 max sell tax limit */ function taxLimits() external view returns (uint16, uint16) { uint16 maxBuyTax = _buyTax < MAX_BUY_TAX_AFTER ? MAX_BUY_TAX_AFTER : _buyTax; uint16 maxSellTax = _sellTax < MAX_SELL_TAX_AFTER ? MAX_SELL_TAX_AFTER : _sellTax; return (maxBuyTax, maxSellTax); } } // File contracts/token/TokenERC20Base.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract TokenERC20Base is AntiBotHelper, TaxHelper, ERC20Burnable { using Address for address payable; uint16 internal constant DENOMINATOR = 10000; // default threshold would be 0.25% of the total supply uint16 private constant DEFAULT_THRESHOLD = 25; address public immutable uniswapV2Router; address public immutable ethPair; bool internal _isTaxConvertEnabled = true; uint256 public firstBuyAt; /// @dev Threshold amount of accumlated tax until swap to pair token uint256 internal _thresholdAmount; constructor( string memory name_, string memory symbol_, uint256 supply_, address router_, address payable marketingWallet_ ) ERC20(name_, symbol_) { // check if marketing account can receive ETH marketingWallet_.sendValue(0); // pair with ETH address lpPair = IUniswapV2Factory( IUniswapV2Router02(router_).factory() ).createPair(address(this), IUniswapV2Router02(router_).WETH()); uniswapV2Router = router_; ethPair = lpPair; _marketingWallet = marketingWallet_; _isAmmPair[lpPair] = true; _isExcludedFromHoldLimit[lpPair] = true; // threshold amount is 0.05% of the total supply _thresholdAmount = (supply_ * DEFAULT_THRESHOLD) / DENOMINATOR; _isExcludedFromTxLimit[_msgSender()] = true; _isExcludedFromTxLimit[address(0)] = true; _isExcludedFromTxLimit[address(0xdead)] = true; _isExcludedFromTxLimit[address(this)] = true; _isExcludedFromHoldLimit[_msgSender()] = true; _isExcludedFromHoldLimit[address(0)] = true; _isExcludedFromHoldLimit[address(0xdead)] = true; _isExcludedFromHoldLimit[address(this)] = true; _isExcludedFromTax[_msgSender()] = true; _isExcludedFromTax[address(0)] = true; _isExcludedFromTax[address(0xdead)] = true; _isExcludedFromTax[address(this)] = true; // Mint the tokens to the token deployer _mint(_msgSender(), supply_); } /** * @notice function {batchSetAsAmmPair} * * Set / unset multiple pair addresses as AMM pair * LP addresses should be excluded from hold limit * * @param pairs lp addresses * @param flag true / false */ function batchSetAsAmmPair( address[] calldata pairs, bool flag ) external onlyOwner { uint256 len = pairs.length; for (uint256 i; i < len; ) { address pair = pairs[i]; require(pair != ethPair, "can not access base eth pair"); _isAmmPair[pair] = flag; _isExcludedFromHoldLimit[pair] = flag; unchecked { ++i; } emit NewAmmPair(pair, flag); } } /// @notice Enable conversion of token tax function enableTaxConvert(bool flag) external onlyOwner { _isTaxConvertEnabled = flag; } function isTaxConvertEnabled() external view returns (bool) { return _isTaxConvertEnabled; } /// @notice Update the threshold amount for the swapping to occur /// @dev Too small value will cause sell tx happens in every tx function updateThresholdAmount(uint256 amount) external onlyOwner { require(amount > 0, "invalid threshold"); _thresholdAmount = amount; } function thresholdAmount() external view returns (uint256) { return _thresholdAmount; } } // File contracts/token/TokenERC20.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract Fractal is TokenERC20Base { using Address for address payable; using SafeERC20 for IERC20; bool private _inSwap; modifier lockTheSwap() { _inSwap = true; _; _inSwap = false; } constructor( address payable marketingWallet_ ) TokenERC20Base( "Fractal", "FTL", 100_000_000_000 ether, 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, marketingWallet_ ) {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual override { uint256 totalSupply_ = totalSupply(); // Check if trading is enabled address owner_ = owner(); require( _tradingEnabled || owner_ == from || owner_ == to, "trading disabled" ); // Check max tx limit require( _isExcludedFromTxLimit[from] || _isExcludedFromTxLimit[to] || amount <= (totalSupply_ * _maxTxLimit) / DENOMINATOR, "tx amount limited" ); // Check max wallet amount limit require( _isExcludedFromHoldLimit[to] || balanceOf(to) <= (totalSupply_ * _maxHoldLimit) / DENOMINATOR, "receiver hold limited" ); } function _transfer( address from, address to, uint256 amount ) internal override { uint256 blockTime = block.timestamp; // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool isWhitelisted = _isExcludedFromTax[from] || _isExcludedFromTax[to]; bool isBuyTx = _isAmmPair[from]; bool isSellTx = _isAmmPair[to]; // swap accumlated tax into ETH or USDC if ( !_inSwap && !isWhitelisted && !isBuyTx && _isTaxConvertEnabled && contractTokenBalance >= _thresholdAmount ) { // although the project tax period is finished, there may still be accumulated taxes thus far. // in this case, we will swap all those taxes into ETH. bool isProjectTaxOverTime = _projectTaxApplied && firstBuyAt > 0 && blockTime > firstBuyAt + PROJECT_TAX_PERIOD; // when the physicsico fee period is over, swap all accumlated taxes if (isProjectTaxOverTime) _swapToPairedToken(contractTokenBalance); else _swapToPairedToken(_thresholdAmount); if (isProjectTaxOverTime) _projectTaxApplied = false; } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 fees; if (!isWhitelisted) { if (isBuyTx) { // project tax is applied on top of buy tax for 30 days // its 15% of buy tax if (firstBuyAt == 0) firstBuyAt = block.timestamp; if ( _projectTaxApplied && blockTime <= firstBuyAt + PROJECT_TAX_PERIOD ) fees = (amount * _buyTax * (DENOMINATOR + PROJECT_TAX)) / DENOMINATOR / DENOMINATOR; else fees = (amount * _buyTax) / DENOMINATOR; } else if (isSellTx) { // project tax is applied on top of sell tax for 30 days // its 15% of buy tax if ( _projectTaxApplied && (firstBuyAt == 0 || blockTime <= firstBuyAt + PROJECT_TAX_PERIOD) ) fees = (amount * _sellTax * (DENOMINATOR + PROJECT_TAX)) / DENOMINATOR / DENOMINATOR; else fees = (amount * _sellTax) / DENOMINATOR; } if (fees > 0) super._transfer(from, address(this), fees); amount -= fees; } super._transfer(from, to, amount); } /** * @dev Swap token accumlated in this contract to the base paired token * * According to the paired token * - when paired token is ETH, swapToETH function is called * - when paired token is another token, swapToToken is called */ function _swapToPairedToken(uint256 amount) private lockTheSwap { uint256 swappedAmount = _swapToETH(amount); if (swappedAmount > 0) { // send project tax if (_projectTaxApplied) { uint256 projectTaxAmount = (swappedAmount * PROJECT_TAX) / (DENOMINATOR + PROJECT_TAX); PROJECT_WALLET.sendValue(projectTaxAmount); swappedAmount -= projectTaxAmount; } // send buy/sell tax _marketingWallet.sendValue(swappedAmount); } } function _swapToETH(uint256 amount) private returns (uint256) { IUniswapV2Router02 dexRouter = IUniswapV2Router02(uniswapV2Router); // generate the uniswap pair path of token -> eth address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); _approve(address(this), address(dexRouter), amount); uint256 balanceBefore = address(this).balance; // make the swap try dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, // accept any amount of ETH path, address(this), block.timestamp + 300 ) { return address(this).balance - balanceBefore; } catch (bytes memory /* lowLevelData */) {} return 0; } receive() external payable {} /** * @dev It allows the admin to recover tokens sent to the contract * @param token_: the address of the token to withdraw * @param amount_: the number of tokens to withdraw * * This function is only callable by owner */ function recoverToken(address token_, uint256 amount_) external onlyOwner { require(token_ != address(this), "Not allowed token"); IERC20(token_).safeTransfer(_msgSender(), amount_); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"marketingWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"ExcludedFromHoldLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"ExcludedFromTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"ExcludedFromTxLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"maxHoldLimit","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"maxTxLimit","type":"uint16"}],"name":"MaxLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"NewAmmPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyTax","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellTax","type":"uint16"}],"name":"TaxesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchExcludeFromHoldLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchExcludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchSetAsAmmPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"enableTaxConvert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstBuyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"isAmmPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxConvertEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxLimits","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"holdLimit","type":"uint16"},{"internalType":"uint16","name":"txLimit","type":"uint16"}],"name":"updateMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"buyTax","type":"uint16"},{"internalType":"uint16","name":"sellTax","type":"uint16"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000805463ffffffff60a01b19166219001960a31b1790556003805464ffffffffff19166409c409c401179055600b805460ff191660011790553480156200004b57600080fd5b506040516200335f3803806200335f8339810160408190526200006e9162000907565b60405180604001604052806007815260200166119c9858dd185b60ca1b8152506040518060400160405280600381526020016211951360ea1b8152506c01431e0fae6d7217caa0000000737a250d5630b4cf539739df2c5dacb4c659f2488d848484620000ea620000e46200047c60201b60201c565b62000480565b6009620000f88382620009d2565b50600a620001078282620009d2565b50620001219150506001600160a01b0382166000620004d0565b6000826001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000162573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000188919062000907565b6001600160a01b031663c9c6539630856001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fc919062000907565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000270919062000907565b6001600160a01b0380851660805280821660a0819052600380549286166501000000000002600160281b600160c81b0319909316929092179091556000908152600560209081526040808320805460ff19908116600190811790925560029093529220805490911690911790559050612710620002ef60198662000ab4565b620002fb919062000ad4565b600d55336000818152600160208181526040808420805460ff1990811685179091557fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4980548216851790557fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d80548216851790553080865282862080548316861790558686526002845282862080548316861790557fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b80548316861790557f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc80548316861790558086528286208054831686179055868652600490935281852080548216851790557f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80548216851790557f42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd805482168517905591845290922080549092161790556200046f9085620005f8565b5050505050505062000b0d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80471015620005265760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064015b60405180910390fd5b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811462000575576040519150601f19603f3d011682016040523d82523d6000602084013e6200057a565b606091505b5050905080620005f35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016200051d565b505050565b6001600160a01b038216620006505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200051d565b806008600082825462000664919062000af7565b90915550506001600160a01b0382166000818152600660209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620006c760008383620006cb565b5050565b6000620006d760085490565b90506000620006ee6000546001600160a01b031690565b600054909150600160c01b900460ff16806200071b5750846001600160a01b0316816001600160a01b0316145b80620007385750836001600160a01b0316816001600160a01b0316145b620007795760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b60448201526064016200051d565b6001600160a01b03851660009081526001602052604090205460ff1680620007b957506001600160a01b03841660009081526001602052604090205460ff165b80620007ee575060005461271090620007de90600160a01b900461ffff168462000ab4565b620007ea919062000ad4565b8311155b620008305760405162461bcd60e51b81526020600482015260116024820152701d1e08185b5bdd5b9d081b1a5b5a5d1959607a1b60448201526064016200051d565b6001600160a01b03841660009081526002602052604090205460ff1680620008995750600054612710906200087190600160b01b900461ffff168462000ab4565b6200087d919062000ad4565b6001600160a01b03851660009081526006602052604090205411155b620008e75760405162461bcd60e51b815260206004820152601560248201527f726563656976657220686f6c64206c696d69746564000000000000000000000060448201526064016200051d565b5050505050565b6001600160a01b03811681146200090457600080fd5b50565b6000602082840312156200091a57600080fd5b81516200092781620008ee565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200095957607f821691505b6020821081036200097a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005f357600081815260208120601f850160051c81016020861015620009a95750805b601f850160051c820191505b81811015620009ca57828155600101620009b5565b505050505050565b81516001600160401b03811115620009ee57620009ee6200092e565b62000a0681620009ff845462000944565b8462000980565b602080601f83116001811462000a3e576000841562000a255750858301515b600019600386901b1c1916600185901b178555620009ca565b600085815260208120601f198616915b8281101562000a6f5788860151825594840194600190910190840162000a4e565b508582101562000a8e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000ace5762000ace62000a9e565b92915050565b60008262000af257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000ace5762000ace62000a9e565b60805160a05161281e62000b416000396000818161037b0152610f340152600081816102cf0152611f7c015261281e6000f3fe60806040526004361061023f5760003560e01c806379cc67901161012e578063aacebbe3116100ab578063d94160e01161006f578063d94160e014610725578063db200bfa14610786578063dd62ed3e146107a6578063def98aba146107c6578063f2fde38b146107e657600080fd5b8063aacebbe31461066c578063b29a81401461068c578063b6a6790b146106ac578063c5f7f168146106cc578063cb4ca631146106ec57600080fd5b806395d89b41116100f257806395d89b41146105e25780639c5a6996146105f7578063a103657e14610617578063a457c2d71461062c578063a9059cbb1461064c57600080fd5b806379cc6790146105365780638a8c523c146105565780638da5cb5b1461056b5780639191a9c71461058957806394488683146105c257600080fd5b80632af65da1116101bc57806370a082311161018057806370a0823114610486578063715018a6146104bc578063728f8eea146104d157806375f0a874146104f9578063785e8a121461051e57600080fd5b80632af65da1146103f4578063313ce56714610414578063395093511461043057806341d3a7b91461045057806342966c681461046657600080fd5b80631a861d26116102035780631a861d261461032857806322d0c30d1461036957806323b872dd1461039d57806328f4dbb6146103bd5780632aa9c376146103d257600080fd5b8063064a59d01461024b57806306fdde031461027b578063095ea7b31461029d5780631694505e146102bd57806318160ddd1461030957600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50600054600160c01b900460ff165b60405190151581526020015b60405180910390f35b34801561028757600080fd5b50610290610806565b6040516102729190612414565b3480156102a957600080fd5b506102666102b836600461245c565b610898565b3480156102c957600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610272565b34801561031557600080fd5b506008545b604051908152602001610272565b34801561033457600080fd5b5060005461ffff600160b01b8204811691600160a01b9004165b6040805161ffff938416815292909116602083015201610272565b34801561037557600080fd5b506102f17f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a957600080fd5b506102666103b8366004612488565b6108b2565b3480156103c957600080fd5b50600d5461031a565b3480156103de57600080fd5b506103f26103ed3660046124d7565b6108d6565b005b34801561040057600080fd5b506103f261040f3660046124fb565b6108f1565b34801561042057600080fd5b5060405160128152602001610272565b34801561043c57600080fd5b5061026661044b36600461245c565b6109a4565b34801561045c57600080fd5b5061031a600c5481565b34801561047257600080fd5b506103f2610481366004612581565b6109c6565b34801561049257600080fd5b5061031a6104a136600461259a565b6001600160a01b031660009081526006602052604090205490565b3480156104c857600080fd5b506103f26109d3565b3480156104dd57600080fd5b5060035461ffff6101008204811691630100000090041661034e565b34801561050557600080fd5b50600354600160281b90046001600160a01b03166102f1565b34801561052a57600080fd5b50600b5460ff16610266565b34801561054257600080fd5b506103f261055136600461245c565b6109e7565b34801561056257600080fd5b506103f2610a00565b34801561057757600080fd5b506000546001600160a01b03166102f1565b34801561059557600080fd5b506102666105a436600461259a565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105ce57600080fd5b506103f26105dd3660046124fb565b610a95565b3480156105ee57600080fd5b50610290610b41565b34801561060357600080fd5b506103f26106123660046125ce565b610b50565b34801561062357600080fd5b5061034e610c8b565b34801561063857600080fd5b5061026661064736600461245c565b610cfb565b34801561065857600080fd5b5061026661066736600461245c565b610d76565b34801561067857600080fd5b506103f261068736600461259a565b610d84565b34801561069857600080fd5b506103f26106a736600461245c565b610e8b565b3480156106b857600080fd5b506103f26106c73660046124fb565b610ef3565b3480156106d857600080fd5b506103f26106e73660046124fb565b611034565b3480156106f857600080fd5b5061026661070736600461259a565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561073157600080fd5b5061076f61074036600461259a565b6001600160a01b031660009081526002602090815260408083205460019092529091205460ff91821692911690565b604080519215158352901515602083015201610272565b34801561079257600080fd5b506103f26107a1366004612581565b6110de565b3480156107b257600080fd5b5061031a6107c1366004612601565b61112f565b3480156107d257600080fd5b506103f26107e13660046125ce565b61115a565b3480156107f257600080fd5b506103f261080136600461259a565b61133f565b6060600980546108159061263a565b80601f01602080910402602001604051908101604052809291908181526020018280546108419061263a565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a68185856113b5565b60019150505b92915050565b6000336108c08582856114d9565b6108cb858585611553565b506001949350505050565b6108de6117fd565b600b805460ff1916911515919091179055565b6108f96117fd565b8160005b8181101561099d57600085858381811061091957610919612674565b905060200201602081019061092e919061259a565b6001600160a01b038116600081815260026020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507f0a3739d32ce712ba6f19229ad53a9267424ae1f5fb81ea18eb916ca6fd9f7188910160405180910390a1506108fd565b5050505050565b6000336108a68185856109b7838361112f565b6109c191906126a0565b6113b5565b6109d03382611857565b50565b6109db6117fd565b6109e56000611997565b565b6109f28233836114d9565b6109fc8282611857565b5050565b610a086117fd565b600054600160c01b900460ff1615610a595760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064015b60405180910390fd5b6000805460ff60c01b1916600160c01b1781556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c79190a1565b610a9d6117fd565b8160005b8181101561099d576000858583818110610abd57610abd612674565b9050602002016020810190610ad2919061259a565b6001600160a01b038116600081815260046020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507fea5814d1cf99e5f6aee98da410ea4adcdbe5ded97855de3b25144b0898d0be4a910160405180910390a150610aa1565b6060600a80546108159061263a565b610b586117fd565b60035461ffff6101008204811691630100000090048116908416821015610bc0576103e861ffff85161115610bc05760405162461bcd60e51b815260206004820152600e60248201526d0d2dcecc2d8d2c840c4eaf2a8c2f60931b6044820152606401610a50565b8061ffff168361ffff161115610c18576103e861ffff84161115610c185760405162461bcd60e51b815260206004820152600f60248201526e0d2dcecc2d8d2c840e6cad8d8a8c2f608b1b6044820152606401610a50565b6003805464ffffffff00191661010061ffff87811691820264ffff0000001916929092176301000000928716928302179092556040805192835260208301919091527fb4974848e899701c9d6891bf1592fd40b2600b743dcd9ea1aed5aba77a059469910160405180910390a150505050565b600354600090819081906103e861010090910461ffff1610610cb857600354610100900461ffff16610cbc565b6103e85b6003549091506000906103e8630100000090910461ffff1610610cec576003546301000000900461ffff16610cf0565b6103e85b919491935090915050565b60003381610d09828661112f565b905083811015610d695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a50565b6108cb82868684036113b5565b6000336108a6818585611553565b610d8c6117fd565b6003546001600160a01b03808316600160281b9092041603610de25760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd1a1a5b99c818da185b99d959608a1b6044820152606401610a50565b6001600160a01b038116610e295760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081dd85b1b195d60921b6044820152606401610a50565b6003805465010000000000600160c81b031916600160281b6001600160a01b038416908102919091179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e79060200160405180910390a150565b610e936117fd565b306001600160a01b03831603610edf5760405162461bcd60e51b81526020600482015260116024820152702737ba1030b63637bbb2b2103a37b5b2b760791b6044820152606401610a50565b6109fc6001600160a01b03831633836119e7565b610efb6117fd565b8160005b8181101561099d576000858583818110610f1b57610f1b612674565b9050602002016020810190610f30919061259a565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031603610fb35760405162461bcd60e51b815260206004820152601c60248201527f63616e206e6f74206163636573732062617365206574682070616972000000006044820152606401610a50565b6001600160a01b0381166000818152600560209081526040808320805489151560ff199182168117909255600284529382902080549094168117909355805193845290830191909152600193909301927f4d5593e244fd41eece27031c1331466a9e253a06df08dda6c1c2b3c387140da0910160405180910390a150610eff565b61103c6117fd565b8160005b8181101561099d57600085858381811061105c5761105c612674565b9050602002016020810190611071919061259a565b6001600160a01b038116600081815260016020818152604092839020805460ff19168a151590811790915583519485529084015294909401939192507fa301a811c39dbd3a2ffd9aea1076306ae8b2a227d5304311a68939f08e3d084a910160405180910390a150611040565b6110e66117fd565b6000811161112a5760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081d1a1c995cda1bdb19607a1b6044820152606401610a50565b600d55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6111626117fd565b8061ffff168261ffff1610156111ba5760405162461bcd60e51b815260206004820152601b60248201527f7478206c696d6974206578636565647320686f6c64206c696d697400000000006044820152606401610a50565b60005461ffff808416600160b01b90920416118015906111ea575060005461ffff808316600160a01b9092041611155b6112265760405162461bcd60e51b815260206004820152600d60248201526c696e637265617365206f6e6c7960981b6044820152606401610a50565b61271061ffff821611156112745760405162461bcd60e51b81526020600482015260156024820152747478206c696d6974206f7574206f662072616e676560581b6044820152606401610a50565b61271061ffff831611156112ca5760405162461bcd60e51b815260206004820152601760248201527f686f6c64206c696d6974206f7574206f662072616e67650000000000000000006044820152606401610a50565b6000805463ffffffff60a01b1916600160b01b61ffff85811691820261ffff60a01b191692909217600160a01b928516928302179092556040805192835260208301919091527f244331ce56bb49b130a963a6c0f1869845bb5ded2cd3dea0329926354d27699a910160405180910390a15050565b6113476117fd565b6001600160a01b0381166113ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a50565b6109d081611997565b6001600160a01b0383166114175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a50565b6001600160a01b0382166114785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a50565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114e5848461112f565b9050600019811461154d57818110156115405760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a50565b61154d84848484036113b5565b50505050565b306000908152600660209081526040808320546001600160a01b0387168452600490925282205442929060ff16806115a357506001600160a01b03851660009081526004602052604090205460ff165b6001600160a01b03808816600090815260056020526040808220549289168252902054600e5492935060ff9182169290821691161580156115e2575082155b80156115ec575081155b80156115fa5750600b5460ff165b80156116085750600d548410155b156116735760035460009060ff16801561162457506000600c54115b801561163f575062278d00600c5461163c91906126a0565b86115b905080156116555761165085611a39565b611660565b611660600d54611a39565b8015611671576003805460ff191690555b505b856000036116915761168788886000611ae7565b5050505050505050565b6000836117e757821561173d57600c546000036116ad5742600c555b60035460ff1680156116cf575062278d00600c546116cb91906126a0565b8611155b1561172357612710806116e46105dc826126b3565b60035461ffff918216916116fe916101009004168b6126d5565b61170891906126d5565b61171291906126ec565b61171c91906126ec565b90506117c9565b6003546127109061171290610100900461ffff16896126d5565b81156117c95760035460ff16801561176f5750600c54158061176f575062278d00600c5461176b91906126a0565b8611155b156117a057612710806117846105dc826126b3565b60035461ffff918216916116fe9163010000009004168b6126d5565b600354612710906117bc906301000000900461ffff16896126d5565b6117c691906126ec565b90505b80156117da576117da893083611ae7565b6117e4818861270e565b96505b6117f2898989611ae7565b505050505050505050565b6000546001600160a01b031633146109e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a50565b6001600160a01b0382166118b75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a50565b6001600160a01b0382166000908152600660205260409020548181101561192b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a50565b6001600160a01b03831660008181526006602090815260408083208686039055600880548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361199283600084611c94565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611992908490611e93565b600e805460ff191660011790556000611a5182611f68565b90508015611ad95760035460ff1615611abc576000611a746105dc6127106126b3565b61ffff16611a846105dc846126d5565b611a8e91906126ec565b9050611aae73cd443a0950f1842c7be8a6c31fcebf2ff22ebedc82612147565b611ab8818361270e565b9150505b600354611ad990600160281b90046001600160a01b031682612147565b5050600e805460ff19169055565b6001600160a01b038316611b4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a50565b6001600160a01b038216611bad5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a50565b6001600160a01b03831660009081526006602052604090205481811015611c255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a50565b6001600160a01b0380851660008181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611c859086815260200190565b60405180910390a361154d8484845b6000611c9f60085490565b90506000611cb56000546001600160a01b031690565b600054909150600160c01b900460ff1680611ce15750846001600160a01b0316816001600160a01b0316145b80611cfd5750836001600160a01b0316816001600160a01b0316145b611d3c5760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b6044820152606401610a50565b6001600160a01b03851660009081526001602052604090205460ff1680611d7b57506001600160a01b03841660009081526001602052604090205460ff165b80611dab575060005461271090611d9d90600160a01b900461ffff16846126d5565b611da791906126ec565b8311155b611deb5760405162461bcd60e51b81526020600482015260116024820152701d1e08185b5bdd5b9d081b1a5b5a5d1959607a1b6044820152606401610a50565b6001600160a01b03841660009081526002602052604090205460ff1680611e4f575060005461271090611e2990600160b01b900461ffff16846126d5565b611e3391906126ec565b6001600160a01b03851660009081526006602052604090205411155b61099d5760405162461bcd60e51b81526020600482015260156024820152741c9958d95a5d995c881a1bdb19081b1a5b5a5d1959605a1b6044820152606401610a50565b6000611ee8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122609092919063ffffffff16565b9050805160001480611f09575080806020019051810190611f099190612721565b6119925760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a50565b6040805160028082526060820183526000927f000000000000000000000000000000000000000000000000000000000000000092849290916020830190803683370190505090503081600081518110611fc357611fc3612674565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612021573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612045919061273e565b8160018151811061205857612058612674565b60200260200101906001600160a01b031690816001600160a01b0316815250506120833083866113b5565b476001600160a01b03831663791ac94786600085306120a44261012c6126a0565b6040518663ffffffff1660e01b81526004016120c495949392919061275b565b600060405180830381600087803b1580156120de57600080fd5b505af19250505080156120ef575060015b612129573d80801561211d576040519150601f19603f3d011682016040523d82523d6000602084013e612122565b606091505b505061213c565b612133814761270e565b95945050505050565b506000949350505050565b804710156121975760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a50565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121e4576040519150601f19603f3d011682016040523d82523d6000602084013e6121e9565b606091505b50509050806119925760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a50565b606061226f8484600085612277565b949350505050565b6060824710156122d85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a50565b600080866001600160a01b031685876040516122f491906127cc565b60006040518083038185875af1925050503d8060008114612331576040519150601f19603f3d011682016040523d82523d6000602084013e612336565b606091505b509150915061234787838387612352565b979650505050505050565b606083156123c15782516000036123ba576001600160a01b0385163b6123ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a50565b508161226f565b61226f83838151156123d65781518083602001fd5b8060405162461bcd60e51b8152600401610a509190612414565b60005b8381101561240b5781810151838201526020016123f3565b50506000910152565b60208152600082518060208401526124338160408501602087016123f0565b601f01601f19169190910160400192915050565b6001600160a01b03811681146109d057600080fd5b6000806040838503121561246f57600080fd5b823561247a81612447565b946020939093013593505050565b60008060006060848603121561249d57600080fd5b83356124a881612447565b925060208401356124b881612447565b929592945050506040919091013590565b80151581146109d057600080fd5b6000602082840312156124e957600080fd5b81356124f4816124c9565b9392505050565b60008060006040848603121561251057600080fd5b833567ffffffffffffffff8082111561252857600080fd5b818601915086601f83011261253c57600080fd5b81358181111561254b57600080fd5b8760208260051b850101111561256057600080fd5b60209283019550935050840135612576816124c9565b809150509250925092565b60006020828403121561259357600080fd5b5035919050565b6000602082840312156125ac57600080fd5b81356124f481612447565b803561ffff811681146125c957600080fd5b919050565b600080604083850312156125e157600080fd5b6125ea836125b7565b91506125f8602084016125b7565b90509250929050565b6000806040838503121561261457600080fd5b823561261f81612447565b9150602083013561262f81612447565b809150509250929050565b600181811c9082168061264e57607f821691505b60208210810361266e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156108ac576108ac61268a565b61ffff8181168382160190808211156126ce576126ce61268a565b5092915050565b80820281158282048414176108ac576108ac61268a565b60008261270957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108ac576108ac61268a565b60006020828403121561273357600080fd5b81516124f4816124c9565b60006020828403121561275057600080fd5b81516124f481612447565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127ab5784516001600160a01b031683529383019391830191600101612786565b50506001600160a01b03969096166060850152505050608001529392505050565b600082516127de8184602087016123f0565b919091019291505056fea2646970667358221220450d682f6c7de89afd0ce1ab32d4718e64eef1d21b7800ec7af9d9dda85a3b8264736f6c63430008130033000000000000000000000000215d20c4cfc58d2c40aa4e0f43c47d53b6560e4a
Deployed Bytecode
0x60806040526004361061023f5760003560e01c806379cc67901161012e578063aacebbe3116100ab578063d94160e01161006f578063d94160e014610725578063db200bfa14610786578063dd62ed3e146107a6578063def98aba146107c6578063f2fde38b146107e657600080fd5b8063aacebbe31461066c578063b29a81401461068c578063b6a6790b146106ac578063c5f7f168146106cc578063cb4ca631146106ec57600080fd5b806395d89b41116100f257806395d89b41146105e25780639c5a6996146105f7578063a103657e14610617578063a457c2d71461062c578063a9059cbb1461064c57600080fd5b806379cc6790146105365780638a8c523c146105565780638da5cb5b1461056b5780639191a9c71461058957806394488683146105c257600080fd5b80632af65da1116101bc57806370a082311161018057806370a0823114610486578063715018a6146104bc578063728f8eea146104d157806375f0a874146104f9578063785e8a121461051e57600080fd5b80632af65da1146103f4578063313ce56714610414578063395093511461043057806341d3a7b91461045057806342966c681461046657600080fd5b80631a861d26116102035780631a861d261461032857806322d0c30d1461036957806323b872dd1461039d57806328f4dbb6146103bd5780632aa9c376146103d257600080fd5b8063064a59d01461024b57806306fdde031461027b578063095ea7b31461029d5780631694505e146102bd57806318160ddd1461030957600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50600054600160c01b900460ff165b60405190151581526020015b60405180910390f35b34801561028757600080fd5b50610290610806565b6040516102729190612414565b3480156102a957600080fd5b506102666102b836600461245c565b610898565b3480156102c957600080fd5b506102f17f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610272565b34801561031557600080fd5b506008545b604051908152602001610272565b34801561033457600080fd5b5060005461ffff600160b01b8204811691600160a01b9004165b6040805161ffff938416815292909116602083015201610272565b34801561037557600080fd5b506102f17f0000000000000000000000005345ab27f625d55b004aacade78785760a95cd5281565b3480156103a957600080fd5b506102666103b8366004612488565b6108b2565b3480156103c957600080fd5b50600d5461031a565b3480156103de57600080fd5b506103f26103ed3660046124d7565b6108d6565b005b34801561040057600080fd5b506103f261040f3660046124fb565b6108f1565b34801561042057600080fd5b5060405160128152602001610272565b34801561043c57600080fd5b5061026661044b36600461245c565b6109a4565b34801561045c57600080fd5b5061031a600c5481565b34801561047257600080fd5b506103f2610481366004612581565b6109c6565b34801561049257600080fd5b5061031a6104a136600461259a565b6001600160a01b031660009081526006602052604090205490565b3480156104c857600080fd5b506103f26109d3565b3480156104dd57600080fd5b5060035461ffff6101008204811691630100000090041661034e565b34801561050557600080fd5b50600354600160281b90046001600160a01b03166102f1565b34801561052a57600080fd5b50600b5460ff16610266565b34801561054257600080fd5b506103f261055136600461245c565b6109e7565b34801561056257600080fd5b506103f2610a00565b34801561057757600080fd5b506000546001600160a01b03166102f1565b34801561059557600080fd5b506102666105a436600461259a565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105ce57600080fd5b506103f26105dd3660046124fb565b610a95565b3480156105ee57600080fd5b50610290610b41565b34801561060357600080fd5b506103f26106123660046125ce565b610b50565b34801561062357600080fd5b5061034e610c8b565b34801561063857600080fd5b5061026661064736600461245c565b610cfb565b34801561065857600080fd5b5061026661066736600461245c565b610d76565b34801561067857600080fd5b506103f261068736600461259a565b610d84565b34801561069857600080fd5b506103f26106a736600461245c565b610e8b565b3480156106b857600080fd5b506103f26106c73660046124fb565b610ef3565b3480156106d857600080fd5b506103f26106e73660046124fb565b611034565b3480156106f857600080fd5b5061026661070736600461259a565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561073157600080fd5b5061076f61074036600461259a565b6001600160a01b031660009081526002602090815260408083205460019092529091205460ff91821692911690565b604080519215158352901515602083015201610272565b34801561079257600080fd5b506103f26107a1366004612581565b6110de565b3480156107b257600080fd5b5061031a6107c1366004612601565b61112f565b3480156107d257600080fd5b506103f26107e13660046125ce565b61115a565b3480156107f257600080fd5b506103f261080136600461259a565b61133f565b6060600980546108159061263a565b80601f01602080910402602001604051908101604052809291908181526020018280546108419061263a565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a68185856113b5565b60019150505b92915050565b6000336108c08582856114d9565b6108cb858585611553565b506001949350505050565b6108de6117fd565b600b805460ff1916911515919091179055565b6108f96117fd565b8160005b8181101561099d57600085858381811061091957610919612674565b905060200201602081019061092e919061259a565b6001600160a01b038116600081815260026020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507f0a3739d32ce712ba6f19229ad53a9267424ae1f5fb81ea18eb916ca6fd9f7188910160405180910390a1506108fd565b5050505050565b6000336108a68185856109b7838361112f565b6109c191906126a0565b6113b5565b6109d03382611857565b50565b6109db6117fd565b6109e56000611997565b565b6109f28233836114d9565b6109fc8282611857565b5050565b610a086117fd565b600054600160c01b900460ff1615610a595760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064015b60405180910390fd5b6000805460ff60c01b1916600160c01b1781556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c79190a1565b610a9d6117fd565b8160005b8181101561099d576000858583818110610abd57610abd612674565b9050602002016020810190610ad2919061259a565b6001600160a01b038116600081815260046020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507fea5814d1cf99e5f6aee98da410ea4adcdbe5ded97855de3b25144b0898d0be4a910160405180910390a150610aa1565b6060600a80546108159061263a565b610b586117fd565b60035461ffff6101008204811691630100000090048116908416821015610bc0576103e861ffff85161115610bc05760405162461bcd60e51b815260206004820152600e60248201526d0d2dcecc2d8d2c840c4eaf2a8c2f60931b6044820152606401610a50565b8061ffff168361ffff161115610c18576103e861ffff84161115610c185760405162461bcd60e51b815260206004820152600f60248201526e0d2dcecc2d8d2c840e6cad8d8a8c2f608b1b6044820152606401610a50565b6003805464ffffffff00191661010061ffff87811691820264ffff0000001916929092176301000000928716928302179092556040805192835260208301919091527fb4974848e899701c9d6891bf1592fd40b2600b743dcd9ea1aed5aba77a059469910160405180910390a150505050565b600354600090819081906103e861010090910461ffff1610610cb857600354610100900461ffff16610cbc565b6103e85b6003549091506000906103e8630100000090910461ffff1610610cec576003546301000000900461ffff16610cf0565b6103e85b919491935090915050565b60003381610d09828661112f565b905083811015610d695760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a50565b6108cb82868684036113b5565b6000336108a6818585611553565b610d8c6117fd565b6003546001600160a01b03808316600160281b9092041603610de25760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd1a1a5b99c818da185b99d959608a1b6044820152606401610a50565b6001600160a01b038116610e295760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081dd85b1b195d60921b6044820152606401610a50565b6003805465010000000000600160c81b031916600160281b6001600160a01b038416908102919091179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e79060200160405180910390a150565b610e936117fd565b306001600160a01b03831603610edf5760405162461bcd60e51b81526020600482015260116024820152702737ba1030b63637bbb2b2103a37b5b2b760791b6044820152606401610a50565b6109fc6001600160a01b03831633836119e7565b610efb6117fd565b8160005b8181101561099d576000858583818110610f1b57610f1b612674565b9050602002016020810190610f30919061259a565b90507f0000000000000000000000005345ab27f625d55b004aacade78785760a95cd526001600160a01b0316816001600160a01b031603610fb35760405162461bcd60e51b815260206004820152601c60248201527f63616e206e6f74206163636573732062617365206574682070616972000000006044820152606401610a50565b6001600160a01b0381166000818152600560209081526040808320805489151560ff199182168117909255600284529382902080549094168117909355805193845290830191909152600193909301927f4d5593e244fd41eece27031c1331466a9e253a06df08dda6c1c2b3c387140da0910160405180910390a150610eff565b61103c6117fd565b8160005b8181101561099d57600085858381811061105c5761105c612674565b9050602002016020810190611071919061259a565b6001600160a01b038116600081815260016020818152604092839020805460ff19168a151590811790915583519485529084015294909401939192507fa301a811c39dbd3a2ffd9aea1076306ae8b2a227d5304311a68939f08e3d084a910160405180910390a150611040565b6110e66117fd565b6000811161112a5760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081d1a1c995cda1bdb19607a1b6044820152606401610a50565b600d55565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b6111626117fd565b8061ffff168261ffff1610156111ba5760405162461bcd60e51b815260206004820152601b60248201527f7478206c696d6974206578636565647320686f6c64206c696d697400000000006044820152606401610a50565b60005461ffff808416600160b01b90920416118015906111ea575060005461ffff808316600160a01b9092041611155b6112265760405162461bcd60e51b815260206004820152600d60248201526c696e637265617365206f6e6c7960981b6044820152606401610a50565b61271061ffff821611156112745760405162461bcd60e51b81526020600482015260156024820152747478206c696d6974206f7574206f662072616e676560581b6044820152606401610a50565b61271061ffff831611156112ca5760405162461bcd60e51b815260206004820152601760248201527f686f6c64206c696d6974206f7574206f662072616e67650000000000000000006044820152606401610a50565b6000805463ffffffff60a01b1916600160b01b61ffff85811691820261ffff60a01b191692909217600160a01b928516928302179092556040805192835260208301919091527f244331ce56bb49b130a963a6c0f1869845bb5ded2cd3dea0329926354d27699a910160405180910390a15050565b6113476117fd565b6001600160a01b0381166113ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a50565b6109d081611997565b6001600160a01b0383166114175760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a50565b6001600160a01b0382166114785760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a50565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006114e5848461112f565b9050600019811461154d57818110156115405760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a50565b61154d84848484036113b5565b50505050565b306000908152600660209081526040808320546001600160a01b0387168452600490925282205442929060ff16806115a357506001600160a01b03851660009081526004602052604090205460ff165b6001600160a01b03808816600090815260056020526040808220549289168252902054600e5492935060ff9182169290821691161580156115e2575082155b80156115ec575081155b80156115fa5750600b5460ff165b80156116085750600d548410155b156116735760035460009060ff16801561162457506000600c54115b801561163f575062278d00600c5461163c91906126a0565b86115b905080156116555761165085611a39565b611660565b611660600d54611a39565b8015611671576003805460ff191690555b505b856000036116915761168788886000611ae7565b5050505050505050565b6000836117e757821561173d57600c546000036116ad5742600c555b60035460ff1680156116cf575062278d00600c546116cb91906126a0565b8611155b1561172357612710806116e46105dc826126b3565b60035461ffff918216916116fe916101009004168b6126d5565b61170891906126d5565b61171291906126ec565b61171c91906126ec565b90506117c9565b6003546127109061171290610100900461ffff16896126d5565b81156117c95760035460ff16801561176f5750600c54158061176f575062278d00600c5461176b91906126a0565b8611155b156117a057612710806117846105dc826126b3565b60035461ffff918216916116fe9163010000009004168b6126d5565b600354612710906117bc906301000000900461ffff16896126d5565b6117c691906126ec565b90505b80156117da576117da893083611ae7565b6117e4818861270e565b96505b6117f2898989611ae7565b505050505050505050565b6000546001600160a01b031633146109e55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a50565b6001600160a01b0382166118b75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a50565b6001600160a01b0382166000908152600660205260409020548181101561192b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a50565b6001600160a01b03831660008181526006602090815260408083208686039055600880548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361199283600084611c94565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611992908490611e93565b600e805460ff191660011790556000611a5182611f68565b90508015611ad95760035460ff1615611abc576000611a746105dc6127106126b3565b61ffff16611a846105dc846126d5565b611a8e91906126ec565b9050611aae73cd443a0950f1842c7be8a6c31fcebf2ff22ebedc82612147565b611ab8818361270e565b9150505b600354611ad990600160281b90046001600160a01b031682612147565b5050600e805460ff19169055565b6001600160a01b038316611b4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a50565b6001600160a01b038216611bad5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a50565b6001600160a01b03831660009081526006602052604090205481811015611c255760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a50565b6001600160a01b0380851660008181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611c859086815260200190565b60405180910390a361154d8484845b6000611c9f60085490565b90506000611cb56000546001600160a01b031690565b600054909150600160c01b900460ff1680611ce15750846001600160a01b0316816001600160a01b0316145b80611cfd5750836001600160a01b0316816001600160a01b0316145b611d3c5760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b6044820152606401610a50565b6001600160a01b03851660009081526001602052604090205460ff1680611d7b57506001600160a01b03841660009081526001602052604090205460ff165b80611dab575060005461271090611d9d90600160a01b900461ffff16846126d5565b611da791906126ec565b8311155b611deb5760405162461bcd60e51b81526020600482015260116024820152701d1e08185b5bdd5b9d081b1a5b5a5d1959607a1b6044820152606401610a50565b6001600160a01b03841660009081526002602052604090205460ff1680611e4f575060005461271090611e2990600160b01b900461ffff16846126d5565b611e3391906126ec565b6001600160a01b03851660009081526006602052604090205411155b61099d5760405162461bcd60e51b81526020600482015260156024820152741c9958d95a5d995c881a1bdb19081b1a5b5a5d1959605a1b6044820152606401610a50565b6000611ee8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122609092919063ffffffff16565b9050805160001480611f09575080806020019051810190611f099190612721565b6119925760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a50565b6040805160028082526060820183526000927f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d92849290916020830190803683370190505090503081600081518110611fc357611fc3612674565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612021573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612045919061273e565b8160018151811061205857612058612674565b60200260200101906001600160a01b031690816001600160a01b0316815250506120833083866113b5565b476001600160a01b03831663791ac94786600085306120a44261012c6126a0565b6040518663ffffffff1660e01b81526004016120c495949392919061275b565b600060405180830381600087803b1580156120de57600080fd5b505af19250505080156120ef575060015b612129573d80801561211d576040519150601f19603f3d011682016040523d82523d6000602084013e612122565b606091505b505061213c565b612133814761270e565b95945050505050565b506000949350505050565b804710156121975760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a50565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121e4576040519150601f19603f3d011682016040523d82523d6000602084013e6121e9565b606091505b50509050806119925760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a50565b606061226f8484600085612277565b949350505050565b6060824710156122d85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a50565b600080866001600160a01b031685876040516122f491906127cc565b60006040518083038185875af1925050503d8060008114612331576040519150601f19603f3d011682016040523d82523d6000602084013e612336565b606091505b509150915061234787838387612352565b979650505050505050565b606083156123c15782516000036123ba576001600160a01b0385163b6123ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a50565b508161226f565b61226f83838151156123d65781518083602001fd5b8060405162461bcd60e51b8152600401610a509190612414565b60005b8381101561240b5781810151838201526020016123f3565b50506000910152565b60208152600082518060208401526124338160408501602087016123f0565b601f01601f19169190910160400192915050565b6001600160a01b03811681146109d057600080fd5b6000806040838503121561246f57600080fd5b823561247a81612447565b946020939093013593505050565b60008060006060848603121561249d57600080fd5b83356124a881612447565b925060208401356124b881612447565b929592945050506040919091013590565b80151581146109d057600080fd5b6000602082840312156124e957600080fd5b81356124f4816124c9565b9392505050565b60008060006040848603121561251057600080fd5b833567ffffffffffffffff8082111561252857600080fd5b818601915086601f83011261253c57600080fd5b81358181111561254b57600080fd5b8760208260051b850101111561256057600080fd5b60209283019550935050840135612576816124c9565b809150509250925092565b60006020828403121561259357600080fd5b5035919050565b6000602082840312156125ac57600080fd5b81356124f481612447565b803561ffff811681146125c957600080fd5b919050565b600080604083850312156125e157600080fd5b6125ea836125b7565b91506125f8602084016125b7565b90509250929050565b6000806040838503121561261457600080fd5b823561261f81612447565b9150602083013561262f81612447565b809150509250929050565b600181811c9082168061264e57607f821691505b60208210810361266e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156108ac576108ac61268a565b61ffff8181168382160190808211156126ce576126ce61268a565b5092915050565b80820281158282048414176108ac576108ac61268a565b60008261270957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108ac576108ac61268a565b60006020828403121561273357600080fd5b81516124f4816124c9565b60006020828403121561275057600080fd5b81516124f481612447565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127ab5784516001600160a01b031683529383019391830191600101612786565b50506001600160a01b03969096166060850152505050608001529392505050565b600082516127de8184602087016123f0565b919091019291505056fea2646970667358221220450d682f6c7de89afd0ce1ab32d4718e64eef1d21b7800ec7af9d9dda85a3b8264736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000215d20c4cfc58d2c40aa4e0f43c47d53b6560e4a
-----Decoded View---------------
Arg [0] : marketingWallet_ (address): 0x215d20c4cFC58D2c40Aa4e0F43c47D53B6560E4a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000215d20c4cfc58d2c40aa4e0f43c47d53b6560e4a
Deployed Bytecode Sourcemap
65714:7400:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47698:98;;;;;;;;;;-1:-1:-1;47749:4:0;47773:15;-1:-1:-1;;;47773:15:0;;;;47698:98;;;179:14:1;;172:22;154:41;;142:2;127:18;47698:98:0;;;;;;;;9959:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12385:226::-;;;;;;;;;;-1:-1:-1;12385:226:0;;;;;:::i;:::-;;:::i;62256:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1482:32:1;;;1464:51;;1452:2;1437:18;62256:40:0;1318:203:1;11088:108:0;;;;;;;;;;-1:-1:-1;11176:12:0;;11088:108;;;1672:25:1;;;1660:2;1645:18;11088:108:0;1526:177:1;47310:113:0;;;;;;;;;;-1:-1:-1;47353:6:0;47388:13;;-1:-1:-1;;;47388:13:0;;;;;-1:-1:-1;;;47403:11:0;;;47310:113;;;;1888:6:1;1921:15;;;1903:34;;1973:15;;;;1968:2;1953:18;;1946:43;1851:18;47310:113:0;1708:287:1;62303:32:0;;;;;;;;;;;;;;;13191:295;;;;;;;;;;-1:-1:-1;13191:295:0;;;;;:::i;:::-;;:::i;65484:101::-;;;;;;;;;;-1:-1:-1;65561:16:0;;65484:101;;64951:102;;;;;;;;;;-1:-1:-1;64951:102:0;;;;;:::i;:::-;;:::i;:::-;;45576:437;;;;;;;;;;-1:-1:-1;45576:437:0;;;;;:::i;:::-;;:::i;10930:93::-;;;;;;;;;;-1:-1:-1;10930:93:0;;11013:2;3727:36:1;;3715:2;3700:18;10930:93:0;3585:184:1;13895:263:0;;;;;;;;;;-1:-1:-1;13895:263:0;;;;;:::i;:::-;;:::i;62394:25::-;;;;;;;;;;;;;;;;22054:91;;;;;;;;;;-1:-1:-1;22054:91:0;;;;;:::i;:::-;;:::i;11259:143::-;;;;;;;;;;-1:-1:-1;11259:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11376:18:0;11349:7;11376:18;;;:9;:18;;;;;;;11259:143;3127:103;;;;;;;;;;;;;:::i;59692:101::-;;;;;;;;;;-1:-1:-1;59767:7:0;;;;;;;;;59776:8;;;;59692:101;;60219:109;;;;;;;;;;-1:-1:-1;60304:16:0;;-1:-1:-1;;;60304:16:0;;-1:-1:-1;;;;;60304:16:0;60219:109;;65061:106;;;;;;;;;;-1:-1:-1;65139:20:0;;;;65061:106;;22464:164;;;;;;;;;;-1:-1:-1;22464:164:0;;;;;:::i;:::-;;:::i;47463:174::-;;;;;;;;;;;;;:::i;2486:87::-;;;;;;;;;;-1:-1:-1;2532:7:0;2559:6;-1:-1:-1;;;;;2559:6:0;2486:87;;61164:104;;;;;;;;;;-1:-1:-1;61164:104:0;;;;;:::i;:::-;-1:-1:-1;;;;;61244:16:0;61220:4;61244:16;;;:10;:16;;;;;;;;;61164:104;60439:419;;;;;;;;;;-1:-1:-1;60439:419:0;;;;;:::i;:::-;;:::i;10178:104::-;;;;;;;;;;;;;:::i;59075:491::-;;;;;;;;;;-1:-1:-1;59075:491:0;;;;;:::i;:::-;;:::i;61500:340::-;;;;;;;;;;;;;:::i;14661:498::-;;;;;;;;;;-1:-1:-1;14661:498:0;;;;;:::i;:::-;;:::i;11608:218::-;;;;;;;;;;-1:-1:-1;11608:218:0;;;;;:::i;:::-;;:::i;59842:322::-;;;;;;;;;;-1:-1:-1;59842:322:0;;;;;:::i;:::-;;:::i;72904:207::-;;;;;;;;;;-1:-1:-1;72904:207:0;;;;;:::i;:::-;;:::i;64384:511::-;;;;;;;;;;-1:-1:-1;64384:511:0;;;;;:::i;:::-;;:::i;45021:431::-;;;;;;;;;;-1:-1:-1;45021:431:0;;;;;:::i;:::-;;:::i;60981:126::-;;;;;;;;;;-1:-1:-1;60981:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;61072:27:0;61048:4;61072:27;;;:18;:27;;;;;;;;;60981:126;46200:228;;;;;;;;;;-1:-1:-1;46200:228:0;;;;;:::i;:::-;-1:-1:-1;;;;;46330:33:0;46285:4;46330:33;;;:24;:33;;;;;;;;;;46378:31;;;;;;;46330:33;;;;;46378:31;;;46200:228;;;;;5307:14:1;;5300:22;5282:41;;5366:14;;5359:22;5354:2;5339:18;;5332:50;5255:18;46200:228:0;5120:268:1;65315:161:0;;;;;;;;;;-1:-1:-1;65315:161:0;;;;;:::i;:::-;;:::i;11889:176::-;;;;;;;;;;-1:-1:-1;11889:176:0;;;;;:::i;:::-;;:::i;46576:582::-;;;;;;;;;;-1:-1:-1;46576:582:0;;;;;:::i;:::-;;:::i;3385:238::-;;;;;;;;;;-1:-1:-1;3385:238:0;;;;;:::i;:::-;;:::i;9959:100::-;10013:13;10046:5;10039:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9959:100;:::o;12385:226::-;12493:4;1039:10;12549:32;1039:10;12565:7;12574:6;12549:8;:32::i;:::-;12599:4;12592:11;;;12385:226;;;;;:::o;13191:295::-;13322:4;1039:10;13380:38;13396:4;1039:10;13411:6;13380:15;:38::i;:::-;13429:27;13439:4;13445:2;13449:6;13429:9;:27::i;:::-;-1:-1:-1;13474:4:0;;13191:295;-1:-1:-1;;;;13191:295:0:o;64951:102::-;2372:13;:11;:13::i;:::-;65018:20:::1;:27:::0;;-1:-1:-1;;65018:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64951:102::o;45576:437::-;2372:13;:11;:13::i;:::-;45720:8;45706:11:::1;45746:260;45766:3;45762:1;:7;45746:260;;;45788:15;45806:8;;45815:1;45806:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45832:33:0;::::1;;::::0;;;:24:::1;:33;::::0;;;;;;;;:40;;-1:-1:-1;;45832:40:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45958:36;;6471:51:1;;;6538:18;;;6531:50;-1:-1:-1;45918:3:0;;;::::1;::::0;45832:33;;-1:-1:-1;45958:36:0::1;::::0;6444:18:1;45958:36:0::1;;;;;;;45773:233;45746:260;;;;45695:318;45576:437:::0;;;:::o;13895:263::-;14008:4;1039:10;14064:64;1039:10;14080:7;14117:10;14089:25;1039:10;14080:7;14089:9;:25::i;:::-;:38;;;;:::i;:::-;14064:8;:64::i;22054:91::-;22110:27;1039:10;22130:6;22110:5;:27::i;:::-;22054:91;:::o;3127:103::-;2372:13;:11;:13::i;:::-;3192:30:::1;3219:1;3192:18;:30::i;:::-;3127:103::o:0;22464:164::-;22541:46;22557:7;1039:10;22580:6;22541:15;:46::i;:::-;22598:22;22604:7;22613:6;22598:5;:22::i;:::-;22464:164;;:::o;47463:174::-;2372:13;:11;:13::i;:::-;47527:15:::1;::::0;-1:-1:-1;;;47527:15:0;::::1;;;47526:16;47518:44;;;::::0;-1:-1:-1;;;47518:44:0;;7056:2:1;47518:44:0::1;::::0;::::1;7038:21:1::0;7095:2;7075:18;;;7068:30;-1:-1:-1;;;7114:18:1;;;7107:45;7169:18;;47518:44:0::1;;;;;;;;;47573:15;:22:::0;;-1:-1:-1;;;;47573:22:0::1;-1:-1:-1::0;;;47573:22:0::1;::::0;;47613:16:::1;::::0;::::1;::::0;47573:15;47613:16:::1;47463:174::o:0;60439:419::-;2372:13;:11;:13::i;:::-;60577:8;60563:11:::1;60603:248;60623:3;60619:1;:7;60603:248;;;60645:15;60663:8;;60672:1;60663:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;60689:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;60689:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;60809:30;;6471:51:1;;;6538:18;;;6531:50;-1:-1:-1;60769:3:0;;;::::1;::::0;60689:27;;-1:-1:-1;60809:30:0::1;::::0;6444:18:1;60809:30:0::1;;;;;;;60630:221;60603:248;;10178:104:::0;10234:13;10267:7;10260:14;;;;;:::i;59075:491::-;2372:13;:11;:13::i;:::-;59202:7:::1;::::0;::::1;;::::0;::::1;::::0;::::1;::::0;59238:8;;::::1;::::0;::::1;::::0;59263:16;::::1;::::0;-1:-1:-1;59259:89:0::1;;;57767:4;59302:27;::::0;::::1;;;59294:54;;;::::0;-1:-1:-1;;;59294:54:0;;7400:2:1;59294:54:0::1;::::0;::::1;7382:21:1::0;7439:2;7419:18;;;7412:30;-1:-1:-1;;;7458:18:1;;;7451:44;7512:18;;59294:54:0::1;7198:338:1::0;59294:54:0::1;59373:8;59363:18;;:7;:18;;;59359:94;;;57876:4;59404:29;::::0;::::1;;;59396:57;;;::::0;-1:-1:-1;;;59396:57:0;;7743:2:1;59396:57:0::1;::::0;::::1;7725:21:1::0;7782:2;7762:18;;;7755:30;-1:-1:-1;;;7801:18:1;;;7794:45;7856:18;;59396:57:0::1;7541:339:1::0;59396:57:0::1;59466:7;:16:::0;;-1:-1:-1;;59493:18:0;59466:16:::1;;::::0;;::::1;::::0;;::::1;-1:-1:-1::0;;59493:18:0;;;;;;;;::::1;::::0;;::::1;;::::0;;;59529:29:::1;::::0;;1903:34:1;;;1968:2;1953:18;;1946:43;;;;59529:29:0::1;::::0;1851:18:1;59529:29:0::1;;;;;;;59146:420;;59075:491:::0;;:::o;61500:340::-;61590:7;;61544:6;;;;;;57767:4;61590:7;;;;:27;:7;:27;:83;;61666:7;;;;;;;61590:83;;;57767:4;61590:83;61704:8;;61571:102;;-1:-1:-1;61684:17:0;;57876:4;61704:8;;;;:29;:8;:29;:87;;61783:8;;;;;;;61704:87;;;57876:4;61704:87;61810:9;;61684:107;;-1:-1:-1;61500:340:0;;-1:-1:-1;;61500:340:0:o;14661:498::-;14779:4;1039:10;14779:4;14862:25;1039:10;14879:7;14862:9;:25::i;:::-;14835:52;;14940:15;14920:16;:35;;14898:122;;;;-1:-1:-1;;;14898:122:0;;8087:2:1;14898:122:0;;;8069:21:1;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:35;8261:19;;14898:122:0;7885:401:1;14898:122:0;15056:60;15065:5;15072:7;15100:15;15081:16;:34;15056:8;:60::i;11608:218::-;11712:4;1039:10;11768:28;1039:10;11785:2;11789:6;11768:9;:28::i;59842:322::-;2372:13;:11;:13::i;:::-;59954:16:::1;::::0;-1:-1:-1;;;;;59954:29:0;;::::1;-1:-1:-1::0;;;59954:16:0;;::::1;;:29:::0;59946:57:::1;;;::::0;-1:-1:-1;;;59946:57:0;;8493:2:1;59946:57:0::1;::::0;::::1;8475:21:1::0;8532:2;8512:18;;;8505:30;-1:-1:-1;;;8551:18:1;;;8544:45;8606:18;;59946:57:0::1;8291:339:1::0;59946:57:0::1;-1:-1:-1::0;;;;;60022:23:0;::::1;60014:50;;;::::0;-1:-1:-1;;;60014:50:0;;8837:2:1;60014:50:0::1;::::0;::::1;8819:21:1::0;8876:2;8856:18;;;8849:30;-1:-1:-1;;;8895:18:1;;;8888:44;8949:18;;60014:50:0::1;8635:338:1::0;60014:50:0::1;60077:16;:28:::0;;-1:-1:-1;;;;;;60077:28:0::1;-1:-1:-1::0;;;;;;;;60077:28:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;60123:33:::1;::::0;1464:51:1;;;60123:33:0::1;::::0;1452:2:1;1437:18;60123:33:0::1;;;;;;;59842:322:::0;:::o;72904:207::-;2372:13;:11;:13::i;:::-;73015:4:::1;-1:-1:-1::0;;;;;72997:23:0;::::1;::::0;72989:53:::1;;;::::0;-1:-1:-1;;;72989:53:0;;9396:2:1;72989:53:0::1;::::0;::::1;9378:21:1::0;9435:2;9415:18;;;9408:30;-1:-1:-1;;;9454:18:1;;;9447:47;9511:18;;72989:53:0::1;9194:341:1::0;72989:53:0::1;73053:50;-1:-1:-1::0;;;;;73053:27:0;::::1;1039:10:::0;73095:7;73053:27:::1;:50::i;64384:511::-:0;2372:13;:11;:13::i;:::-;64517:5;64503:11:::1;64542:346;64562:3;64558:1;:7;64542:346;;;64584:12;64599:5;;64605:1;64599:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;64584:23;;64638:7;-1:-1:-1::0;;;;;64630:15:0::1;:4;-1:-1:-1::0;;;;;64630:15:0::1;::::0;64622:56:::1;;;::::0;-1:-1:-1;;;64622:56:0;;9742:2:1;64622:56:0::1;::::0;::::1;9724:21:1::0;9781:2;9761:18;;;9754:30;9820;9800:18;;;9793:58;9868:18;;64622:56:0::1;9540:352:1::0;64622:56:0::1;-1:-1:-1::0;;;;;64693:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;;;:23;;;::::1;;-1:-1:-1::0;;64693:23:0;;::::1;::::0;::::1;::::0;;;64731:24:::1;:30:::0;;;;;;:37;;;;::::1;::::0;::::1;::::0;;;64854:22;;6471:51:1;;;6538:18;;;6531:50;;;;-1:-1:-1;64814:3:0;;;::::1;::::0;64854:22:::1;::::0;6444:18:1;64854:22:0::1;;;;;;;64569:319;64542:346;;45021:431:::0;2372:13;:11;:13::i;:::-;45163:8;45149:11:::1;45189:256;45209:3;45205:1;:7;45189:256;;;45231:15;45249:8;;45258:1;45249:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45275:31:0;::::1;;::::0;;;:22:::1;:31;::::0;;;;;;;;:38;;-1:-1:-1;;45275:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45399:34;;6471:51:1;;;6538:18;;;6531:50;45359:3:0;;;::::1;::::0;45275:31;;-1:-1:-1;45399:34:0::1;::::0;6444:18:1;45399:34:0::1;;;;;;;45216:229;45189:256;;65315:161:::0;2372:13;:11;:13::i;:::-;65409:1:::1;65400:6;:10;65392:40;;;::::0;-1:-1:-1;;;65392:40:0;;10099:2:1;65392:40:0::1;::::0;::::1;10081:21:1::0;10138:2;10118:18;;;10111:30;-1:-1:-1;;;10157:18:1;;;10150:47;10214:18;;65392:40:0::1;9897:341:1::0;65392:40:0::1;65443:16;:25:::0;65315:161::o;11889:176::-;-1:-1:-1;;;;;12030:18:0;;;12003:7;12030:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11889:176::o;46576:582::-;2372:13;:11;:13::i;:::-;46710:7:::1;46697:20;;:9;:20;;;;46689:60;;;::::0;-1:-1:-1;;;46689:60:0;;10445:2:1;46689:60:0::1;::::0;::::1;10427:21:1::0;10484:2;10464:18;;;10457:30;10523:29;10503:18;;;10496:57;10570:18;;46689:60:0::1;10243:351:1::0;46689:60:0::1;46782:13;::::0;:26:::1;::::0;;::::1;-1:-1:-1::0;;;46782:13:0;;::::1;;:26;::::0;::::1;::::0;:52:::1;;-1:-1:-1::0;46812:11:0::1;::::0;:22:::1;::::0;;::::1;-1:-1:-1::0;;;46812:11:0;;::::1;;:22;;46782:52;46760:115;;;::::0;-1:-1:-1;;;46760:115:0;;10801:2:1;46760:115:0::1;::::0;::::1;10783:21:1::0;10840:2;10820:18;;;10813:30;-1:-1:-1;;;10859:18:1;;;10852:43;10912:18;;46760:115:0::1;10599:337:1::0;46760:115:0::1;44082:5;46894:28;::::0;::::1;;;46886:62;;;::::0;-1:-1:-1;;;46886:62:0;;11143:2:1;46886:62:0::1;::::0;::::1;11125:21:1::0;11182:2;11162:18;;;11155:30;-1:-1:-1;;;11201:18:1;;;11194:51;11262:18;;46886:62:0::1;10941:345:1::0;46886:62:0::1;44344:5;46967:32;::::0;::::1;;;46959:68;;;::::0;-1:-1:-1;;;46959:68:0;;11493:2:1;46959:68:0::1;::::0;::::1;11475:21:1::0;11532:2;11512:18;;;11505:30;11571:25;11551:18;;;11544:53;11614:18;;46959:68:0::1;11291:347:1::0;46959:68:0::1;47040:13;:25:::0;;-1:-1:-1;;;;47076:21:0;-1:-1:-1;;;47040:25:0::1;::::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;;47076:21:0;;;;;-1:-1:-1;;;47076:21:0;;::::1;::::0;;::::1;;::::0;;;47115:35:::1;::::0;;1903:34:1;;;1968:2;1953:18;;1946:43;;;;47115:35:0::1;::::0;1851:18:1;47115:35:0::1;;;;;;;46576:582:::0;;:::o;3385:238::-;2372:13;:11;:13::i;:::-;-1:-1:-1;;;;;3488:22:0;::::1;3466:110;;;::::0;-1:-1:-1;;;3466:110:0;;11845:2:1;3466:110:0::1;::::0;::::1;11827:21:1::0;11884:2;11864:18;;;11857:30;11923:34;11903:18;;;11896:62;-1:-1:-1;;;11974:18:1;;;11967:36;12020:19;;3466:110:0::1;11643:402:1::0;3466:110:0::1;3587:28;3606:8;3587:18;:28::i;18787:380::-:0;-1:-1:-1;;;;;18923:19:0;;18915:68;;;;-1:-1:-1;;;18915:68:0;;12252:2:1;18915:68:0;;;12234:21:1;12291:2;12271:18;;;12264:30;12330:34;12310:18;;;12303:62;-1:-1:-1;;;12381:18:1;;;12374:34;12425:19;;18915:68:0;12050:400:1;18915:68:0;-1:-1:-1;;;;;19002:21:0;;18994:68;;;;-1:-1:-1;;;18994:68:0;;12657:2:1;18994:68:0;;;12639:21:1;12696:2;12676:18;;;12669:30;12735:34;12715:18;;;12708:62;-1:-1:-1;;;12786:18:1;;;12779:32;12828:19;;18994:68:0;12455:398:1;18994:68:0;-1:-1:-1;;;;;19075:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19127:32;;1672:25:1;;;19127:32:0;;1645:18:1;19127:32:0;;;;;;;18787:380;;;:::o;19458:502::-;19593:24;19620:25;19630:5;19637:7;19620:9;:25::i;:::-;19593:52;;-1:-1:-1;;19660:16:0;:37;19656:297;;19760:6;19740:16;:26;;19714:117;;;;-1:-1:-1;;;19714:117:0;;13060:2:1;19714:117:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:31;13118:18;;;13111:59;13187:18;;19714:117:0;12858:353:1;19714:117:0;19875:51;19884:5;19891:7;19919:6;19900:16;:25;19875:8;:51::i;:::-;19582:378;19458:502;;;:::o;67730:3098::-;68233:4;67854:17;11376:18;;;:9;:18;;;;;;;;;-1:-1:-1;;;;;68273:24:0;;;;:18;:24;;;;;;67874:15;;67854:17;68273:24;;;:50;;-1:-1:-1;;;;;;68301:22:0;;;;;;:18;:22;;;;;;;;68273:50;-1:-1:-1;;;;;68349:16:0;;;68334:12;68349:16;;;:10;:16;;;;;;;68392:14;;;;;;;;68487:7;;68252:71;;-1:-1:-1;68349:16:0;;;;;68392:14;;;;68487:7;68486:8;:39;;;;;68512:13;68511:14;68486:39;:64;;;;;68543:7;68542:8;68486:64;:101;;;;-1:-1:-1;68567:20:0;;;;68486:101;:158;;;;;68628:16;;68604:20;:40;;68486:158;68468:825;;;68876:18;;68848:25;;68876:18;;:53;;;;;68928:1;68915:10;;:14;68876:53;:117;;;;;58112:7;68962:10;;:31;;;;:::i;:::-;68950:9;:43;68876:117;68848:145;;69096:20;69092:122;;;69118:40;69137:20;69118:18;:40::i;:::-;69092:122;;;69178:36;69197:16;;69178:18;:36::i;:::-;69233:20;69229:52;;;69255:18;:26;;-1:-1:-1;;69255:26:0;;;69229:52;68656:637;68468:825;69309:6;69319:1;69309:11;69305:93;;69337:28;69353:4;69359:2;69363:1;69337:15;:28::i;:::-;69380:7;;;;;67730:3098;;;:::o;69305:93::-;69410:12;69438:13;69433:1342;;69472:7;69468:1194;;;69616:10;;69630:1;69616:15;69612:49;;69646:15;69633:10;:28;69612:49;69706:18;;;;:87;;;;;58112:7;69762:10;;:31;;;;:::i;:::-;69749:9;:44;;69706:87;69680:375;;;62128:5;;69887:25;58003:4;62128:5;69887:25;:::i;:::-;69876:7;;69867:46;;;;;:16;;69876:7;;;;69867:6;:16;:::i;:::-;:46;;;;:::i;:::-;69866:87;;;;:::i;:::-;:126;;;;:::i;:::-;69834:158;;69468:1194;;69680:375;70033:7;;62128:5;;70024:16;;70033:7;;;70023:32;70033:7;70024:6;:16;:::i;69468:1194::-;70081:8;70077:585;;;70249:18;;;;:133;;;;-1:-1:-1;70293:10:0;;:15;;:88;;;58112:7;70350:10;;:31;;;;:::i;:::-;70337:9;:44;;70293:88;70223:423;;;62128:5;;70477:25;58003:4;62128:5;70477:25;:::i;:::-;70465:8;;70456:47;;;;;:17;;70465:8;;;;70456:6;:17;:::i;70223:423::-;70623:8;;62128:5;;70614:17;;70623:8;;;70613:33;70623:8;70614:6;:17;:::i;:::-;70613:33;;;;:::i;:::-;70606:40;;70223:423;70682:8;;70678:56;;70692:42;70708:4;70722;70729;70692:15;:42::i;:::-;70749:14;70759:4;70749:14;;:::i;:::-;;;69433:1342;70787:33;70803:4;70809:2;70813:6;70787:15;:33::i;:::-;67843:2985;;;;;;67730:3098;;;:::o;2651:132::-;2532:7;2559:6;-1:-1:-1;;;;;2559:6:0;1039:10;2715:23;2707:68;;;;-1:-1:-1;;;2707:68:0;;14119:2:1;2707:68:0;;;14101:21:1;;;14138:18;;;14131:30;14197:34;14177:18;;;14170:62;14249:18;;2707:68:0;13917:356:1;17674:675:0;-1:-1:-1;;;;;17758:21:0;;17750:67;;;;-1:-1:-1;;;17750:67:0;;14480:2:1;17750:67:0;;;14462:21:1;14519:2;14499:18;;;14492:30;14558:34;14538:18;;;14531:62;-1:-1:-1;;;14609:18:1;;;14602:31;14650:19;;17750:67:0;14278:397:1;17750:67:0;-1:-1:-1;;;;;17917:18:0;;17892:22;17917:18;;;:9;:18;;;;;;17954:24;;;;17946:71;;;;-1:-1:-1;;;17946:71:0;;14882:2:1;17946:71:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:34;14940:18;;;14933:62;-1:-1:-1;;;15011:18:1;;;15004:32;15053:19;;17946:71:0;14680:398:1;17946:71:0;-1:-1:-1;;;;;18053:18:0;;;;;;:9;:18;;;;;;;;18074:23;;;18053:44;;18192:12;:22;;;;;;;18243:37;1672:25:1;;;18053:18:0;;;18243:37;;1645:18:1;18243:37:0;;;;;;;18293:48;18313:7;18330:1;18334:6;18293:19;:48::i;:::-;17739:610;17674:675;;:::o;3783:191::-;3857:16;3876:6;;-1:-1:-1;;;;;3893:17:0;;;-1:-1:-1;;;;;;3893:17:0;;;;;;3926:40;;3876:6;;;;;;;3926:40;;3857:16;3926:40;3846:128;3783:191;:::o;36604:214::-;36741:58;;;-1:-1:-1;;;;;15275:32:1;;36741:58:0;;;15257:51:1;15324:18;;;;15317:34;;;36741:58:0;;;;;;;;;;15230:18:1;;;;36741:58:0;;;;;;;;-1:-1:-1;;;;;36741:58:0;-1:-1:-1;;;36741:58:0;;;36687:123;;36721:5;;36687:19;:123::i;71115:586::-;65894:7;:14;;-1:-1:-1;;65894:14:0;65904:4;65894:14;;;:7;71214:18:::1;71225:6:::0;71214:10:::1;:18::i;:::-;71190:42:::0;-1:-1:-1;71247:17:0;;71243:451:::1;;71318:18;::::0;::::1;;71314:279;;;71357:24;71438:25;58003:4;62128:5;71438:25;:::i;:::-;71384:80;;71385:27;58003:4;71385:13:::0;:27:::1;:::i;:::-;71384:80;;;;:::i;:::-;71357:107:::0;-1:-1:-1;71483:42:0::1;58235;71357:107:::0;71483:24:::1;:42::i;:::-;71544:33;71561:16:::0;71544:33;::::1;:::i;:::-;;;71338:255;71314:279;71641:16;::::0;:41:::1;::::0;-1:-1:-1;;;71641:16:0;::::1;-1:-1:-1::0;;;;;71641:16:0::1;71668:13:::0;71641:26:::1;:41::i;:::-;-1:-1:-1::0;;65931:7:0;:15;;-1:-1:-1;;65931:15:0;;;71115:586::o;15629:877::-;-1:-1:-1;;;;;15760:18:0;;15752:68;;;;-1:-1:-1;;;15752:68:0;;15564:2:1;15752:68:0;;;15546:21:1;15603:2;15583:18;;;15576:30;15642:34;15622:18;;;15615:62;-1:-1:-1;;;15693:18:1;;;15686:35;15738:19;;15752:68:0;15362:401:1;15752:68:0;-1:-1:-1;;;;;15839:16:0;;15831:64;;;;-1:-1:-1;;;15831:64:0;;15970:2:1;15831:64:0;;;15952:21:1;16009:2;15989:18;;;15982:30;16048:34;16028:18;;;16021:62;-1:-1:-1;;;16099:18:1;;;16092:33;16142:19;;15831:64:0;15768:399:1;15831:64:0;-1:-1:-1;;;;;15981:15:0;;15959:19;15981:15;;;:9;:15;;;;;;16029:21;;;;16007:109;;;;-1:-1:-1;;;16007:109:0;;16374:2:1;16007:109:0;;;16356:21:1;16413:2;16393:18;;;16386:30;16452:34;16432:18;;;16425:62;-1:-1:-1;;;16503:18:1;;;16496:36;16549:19;;16007:109:0;16172:402:1;16007:109:0;-1:-1:-1;;;;;16152:15:0;;;;;;;:9;:15;;;;;;16170:20;;;16152:38;;16370:13;;;;;;;;;;:23;;;;;;16422:26;;;;;;16184:6;1672:25:1;;1660:2;1645:18;;1526:177;16422:26:0;;;;;;;;16461:37;16481:4;16487:2;16491:6;66838:884;66980:20;67003:13;11176:12;;;11088:108;67003:13;66980:36;;67069:14;67086:7;2532;2559:6;-1:-1:-1;;;;;2559:6:0;;2486:87;67086:7;67126:15;;67069:24;;-1:-1:-1;;;;67126:15:0;;;;;:33;;;67155:4;-1:-1:-1;;;;;67145:14:0;:6;-1:-1:-1;;;;;67145:14:0;;67126:33;:49;;;;67173:2;-1:-1:-1;;;;;67163:12:0;:6;-1:-1:-1;;;;;67163:12:0;;67126:49;67104:115;;;;-1:-1:-1;;;67104:115:0;;16781:2:1;67104:115:0;;;16763:21:1;16820:2;16800:18;;;16793:30;-1:-1:-1;;;16839:18:1;;;16832:46;16895:18;;67104:115:0;16579:340:1;67104:115:0;-1:-1:-1;;;;;67285:28:0;;;;;;:22;:28;;;;;;;;;:75;;-1:-1:-1;;;;;;67334:26:0;;;;;;:22;:26;;;;;;;;67285:75;:148;;;-1:-1:-1;67407:11:0;;62128:5;;67392:26;;-1:-1:-1;;;67407:11:0;;67391:42;67407:11;67392:12;:26;:::i;:::-;67391:42;;;;:::i;:::-;67381:6;:52;;67285:148;67263:215;;;;-1:-1:-1;;;67263:215:0;;17126:2:1;67263:215:0;;;17108:21:1;17165:2;17145:18;;;17138:30;-1:-1:-1;;;17184:18:1;;;17177:47;17241:18;;67263:215:0;16924:341:1;67263:215:0;-1:-1:-1;;;;;67555:28:0;;;;;;:24;:28;;;;;;;;;:110;;-1:-1:-1;67637:13:0;;62128:5;;67622:28;;-1:-1:-1;;;67637:13:0;;67621:44;67637:13;67622:12;:28;:::i;:::-;67621:44;;;;:::i;:::-;-1:-1:-1;;;;;11376:18:0;;11349:7;11376:18;;;:9;:18;;;;;;67604:61;;67555:110;67533:181;;;;-1:-1:-1;;;67533:181:0;;17472:2:1;67533:181:0;;;17454:21:1;17511:2;17491:18;;;17484:30;-1:-1:-1;;;17530:18:1;;;17523:51;17591:18;;67533:181:0;17270:345:1;41659:723:0;42083:23;42109:106;42151:4;42109:106;;;;;;;;;;;;;;;;;42117:5;-1:-1:-1;;;;;42109:27:0;;;:106;;;;;:::i;:::-;42083:132;;42248:10;:17;42269:1;42248:22;:56;;;;42285:10;42274:30;;;;;;;;;;;;:::i;:::-;42226:148;;;;-1:-1:-1;;;42226:148:0;;18072:2:1;42226:148:0;;;18054:21:1;18111:2;18091:18;;;18084:30;18150:34;18130:18;;;18123:62;-1:-1:-1;;;18201:18:1;;;18194:40;18251:19;;42226:148:0;17870:406:1;71709:887:0;71942:16;;;71956:1;71942:16;;;;;;;;71762:7;;71832:15;;71762:7;;71942:16;;;;;;;;;;;;-1:-1:-1;71942:16:0;71918:40;;71987:4;71969;71974:1;71969:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;71969:23:0;;;-1:-1:-1;;;;;71969:23:0;;;;;72013:9;-1:-1:-1;;;;;72013:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72003:4;72008:1;72003:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;72003:26:0;;;-1:-1:-1;;;;;72003:26:0;;;;;72042:51;72059:4;72074:9;72086:6;72042:8;:51::i;:::-;72128:21;-1:-1:-1;;;;;72203:60:0;;;72282:6;72104:21;72355:4;72386;72410:21;:15;72428:3;72410:21;:::i;:::-;72203:243;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72186:384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72528:42;72186:384;;;72478:37;72502:13;72478:21;:37;:::i;:::-;72471:44;71709:887;-1:-1:-1;;;;;71709:887:0:o;72186:384::-;-1:-1:-1;72587:1:0;;71709:887;-1:-1:-1;;;;71709:887:0:o;27846:391::-;27975:6;27950:21;:31;;27928:110;;;;-1:-1:-1;;;27928:110:0;;19856:2:1;27928:110:0;;;19838:21:1;19895:2;19875:18;;;19868:30;19934:31;19914:18;;;19907:59;19983:18;;27928:110:0;19654:353:1;27928:110:0;28052:12;28070:9;-1:-1:-1;;;;;28070:14:0;28092:6;28070:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28051:52;;;28136:7;28114:115;;;;-1:-1:-1;;;28114:115:0;;20424:2:1;28114:115:0;;;20406:21:1;20463:2;20443:18;;;20436:30;20502:34;20482:18;;;20475:62;20573:28;20553:18;;;20546:56;20619:19;;28114:115:0;20222:422:1;29537:229:0;29674:12;29706:52;29728:6;29736:4;29742:1;29745:12;29706:21;:52::i;:::-;29699:59;29537:229;-1:-1:-1;;;;29537:229:0:o;30753:612::-;30923:12;30995:5;30970:21;:30;;30948:118;;;;-1:-1:-1;;;30948:118:0;;20851:2:1;30948:118:0;;;20833:21:1;20890:2;20870:18;;;20863:30;20929:34;20909:18;;;20902:62;-1:-1:-1;;;20980:18:1;;;20973:36;21026:19;;30948:118:0;20649:402:1;30948:118:0;31078:12;31092:23;31119:6;-1:-1:-1;;;;;31119:11:0;31138:5;31159:4;31119:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31077:97;;;;31205:152;31250:6;31275:7;31301:10;31330:12;31205:26;:152::i;:::-;31185:172;30753:612;-1:-1:-1;;;;;;;30753:612:0:o;33883:644::-;34068:12;34097:7;34093:427;;;34125:10;:17;34146:1;34125:22;34121:290;;-1:-1:-1;;;;;26882:19:0;;;34335:60;;;;-1:-1:-1;;;34335:60:0;;21550:2:1;34335:60:0;;;21532:21:1;21589:2;21569:18;;;21562:30;21628:31;21608:18;;;21601:59;21677:18;;34335:60:0;21348:353:1;34335:60:0;-1:-1:-1;34432:10:0;34425:17;;34093:427;34475:33;34483:10;34495:12;35255:17;;:21;35251:388;;35487:10;35481:17;35544:15;35531:10;35527:2;35523:19;35516:44;35251:388;35614:12;35607:20;;-1:-1:-1;;;35607:20:0;;;;;;;;:::i;206:250:1:-;291:1;301:113;315:6;312:1;309:13;301:113;;;391:11;;;385:18;372:11;;;365:39;337:2;330:10;301:113;;;-1:-1:-1;;448:1:1;430:16;;423:27;206:250::o;461:396::-;610:2;599:9;592:21;573:4;642:6;636:13;685:6;680:2;669:9;665:18;658:34;701:79;773:6;768:2;757:9;753:18;748:2;740:6;736:15;701:79;:::i;:::-;841:2;820:15;-1:-1:-1;;816:29:1;801:45;;;;848:2;797:54;;461:396;-1:-1:-1;;461:396:1:o;862:131::-;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:315;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1182:9;1169:23;1201:31;1226:5;1201:31;:::i;:::-;1251:5;1303:2;1288:18;;;;1275:32;;-1:-1:-1;;;998:315:1:o;2000:456::-;2077:6;2085;2093;2146:2;2134:9;2125:7;2121:23;2117:32;2114:52;;;2162:1;2159;2152:12;2114:52;2201:9;2188:23;2220:31;2245:5;2220:31;:::i;:::-;2270:5;-1:-1:-1;2327:2:1;2312:18;;2299:32;2340:33;2299:32;2340:33;:::i;:::-;2000:456;;2392:7;;-1:-1:-1;;;2446:2:1;2431:18;;;;2418:32;;2000:456::o;2461:118::-;2547:5;2540:13;2533:21;2526:5;2523:32;2513:60;;2569:1;2566;2559:12;2584:241;2640:6;2693:2;2681:9;2672:7;2668:23;2664:32;2661:52;;;2709:1;2706;2699:12;2661:52;2748:9;2735:23;2767:28;2789:5;2767:28;:::i;:::-;2814:5;2584:241;-1:-1:-1;;;2584:241:1:o;2830:750::-;2922:6;2930;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3047:9;3034:23;3076:18;3117:2;3109:6;3106:14;3103:34;;;3133:1;3130;3123:12;3103:34;3171:6;3160:9;3156:22;3146:32;;3216:7;3209:4;3205:2;3201:13;3197:27;3187:55;;3238:1;3235;3228:12;3187:55;3278:2;3265:16;3304:2;3296:6;3293:14;3290:34;;;3320:1;3317;3310:12;3290:34;3375:7;3368:4;3358:6;3355:1;3351:14;3347:2;3343:23;3339:34;3336:47;3333:67;;;3396:1;3393;3386:12;3333:67;3427:4;3419:13;;;;-1:-1:-1;3451:6:1;-1:-1:-1;;3492:20:1;;3479:34;3522:28;3479:34;3522:28;:::i;:::-;3569:5;3559:15;;;2830:750;;;;;:::o;3774:180::-;3833:6;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;-1:-1:-1;3925:23:1;;3774:180;-1:-1:-1;3774:180:1:o;3959:247::-;4018:6;4071:2;4059:9;4050:7;4046:23;4042:32;4039:52;;;4087:1;4084;4077:12;4039:52;4126:9;4113:23;4145:31;4170:5;4145:31;:::i;4435:159::-;4502:20;;4562:6;4551:18;;4541:29;;4531:57;;4584:1;4581;4574:12;4531:57;4435:159;;;:::o;4599:256::-;4665:6;4673;4726:2;4714:9;4705:7;4701:23;4697:32;4694:52;;;4742:1;4739;4732:12;4694:52;4765:28;4783:9;4765:28;:::i;:::-;4755:38;;4812:37;4845:2;4834:9;4830:18;4812:37;:::i;:::-;4802:47;;4599:256;;;;;:::o;5393:388::-;5461:6;5469;5522:2;5510:9;5501:7;5497:23;5493:32;5490:52;;;5538:1;5535;5528:12;5490:52;5577:9;5564:23;5596:31;5621:5;5596:31;:::i;:::-;5646:5;-1:-1:-1;5703:2:1;5688:18;;5675:32;5716:33;5675:32;5716:33;:::i;:::-;5768:7;5758:17;;;5393:388;;;;;:::o;5786:380::-;5865:1;5861:12;;;;5908;;;5929:61;;5983:4;5975:6;5971:17;5961:27;;5929:61;6036:2;6028:6;6025:14;6005:18;6002:38;5999:161;;6082:10;6077:3;6073:20;6070:1;6063:31;6117:4;6114:1;6107:15;6145:4;6142:1;6135:15;5999:161;;5786:380;;;:::o;6171:127::-;6232:10;6227:3;6223:20;6220:1;6213:31;6263:4;6260:1;6253:15;6287:4;6284:1;6277:15;6592:127;6653:10;6648:3;6644:20;6641:1;6634:31;6684:4;6681:1;6674:15;6708:4;6705:1;6698:15;6724:125;6789:9;;;6810:10;;;6807:36;;;6823:18;;:::i;13216:168::-;13283:6;13309:10;;;13321;;;13305:27;;13344:11;;;13341:37;;;13358:18;;:::i;:::-;13341:37;13216:168;;;;:::o;13389:::-;13462:9;;;13493;;13510:15;;;13504:22;;13490:37;13480:71;;13531:18;;:::i;13562:217::-;13602:1;13628;13618:132;;13672:10;13667:3;13663:20;13660:1;13653:31;13707:4;13704:1;13697:15;13735:4;13732:1;13725:15;13618:132;-1:-1:-1;13764:9:1;;13562:217::o;13784:128::-;13851:9;;;13872:11;;;13869:37;;;13886:18;;:::i;17620:245::-;17687:6;17740:2;17728:9;17719:7;17715:23;17711:32;17708:52;;;17756:1;17753;17746:12;17708:52;17788:9;17782:16;17807:28;17829:5;17807:28;:::i;18413:251::-;18483:6;18536:2;18524:9;18515:7;18511:23;18507:32;18504:52;;;18552:1;18549;18542:12;18504:52;18584:9;18578:16;18603:31;18628:5;18603:31;:::i;18669:980::-;18931:4;18979:3;18968:9;18964:19;19010:6;18999:9;18992:25;19036:2;19074:6;19069:2;19058:9;19054:18;19047:34;19117:3;19112:2;19101:9;19097:18;19090:31;19141:6;19176;19170:13;19207:6;19199;19192:22;19245:3;19234:9;19230:19;19223:26;;19284:2;19276:6;19272:15;19258:29;;19305:1;19315:195;19329:6;19326:1;19323:13;19315:195;;;19394:13;;-1:-1:-1;;;;;19390:39:1;19378:52;;19485:15;;;;19450:12;;;;19426:1;19344:9;19315:195;;;-1:-1:-1;;;;;;;19566:32:1;;;;19561:2;19546:18;;19539:60;-1:-1:-1;;;19630:3:1;19615:19;19608:35;19527:3;18669:980;-1:-1:-1;;;18669:980:1:o;21056:287::-;21185:3;21223:6;21217:13;21239:66;21298:6;21293:3;21286:4;21278:6;21274:17;21239:66;:::i;:::-;21321:16;;;;;21056:287;-1:-1:-1;;21056:287:1:o
Swarm Source
ipfs://450d682f6c7de89afd0ce1ab32d4718e64eef1d21b7800ec7af9d9dda85a3b82
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.