ERC-20
Source Code
Overview
Max Total Supply
419,761,687,396,991,136.604857 DOGEAI
Holders
12,632
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
863,749,534,384 DOGEAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DogeAi
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Arbiscan.io on 2023-05-08
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
// import "hardhat/console.sol";
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);
}
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);
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
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}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* 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 value {ERC20} uses, unless this function is
* 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 6;
}
/**
* @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 {}
}
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);
}
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
* ====
*
* [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(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);
}
}
}
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
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));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
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");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
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");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
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 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);
}
}
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}
interface ISwapRouter {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
interface IJackpot {
function tradeEvent(address sender, uint amount) external;
}
interface IWETH {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function deposit() external payable;
function transfer(address to, uint256 value) external returns (bool);
function withdraw(uint256) external;
}
interface ISwapFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
abstract contract AbsDogeAi is ERC20, Ownable {
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
event SwapBack(uint lp, uint luck, uint cp, uint lpBalance, uint timestamp);
event Trade(address user, address pair, uint256 amount, uint side, uint256 circulatingSupply, uint timestamp);
event AddLiquidity(uint256 tokenAmount, uint256 ethAmount, uint256 timestamp);
bool public swapEnabled = true;
bool public addLiquidityEnabled = true;
bool public inSwap;
modifier swapping() {
inSwap = true;
_;
inSwap = false;
}
mapping(address => bool) public isFeeExempt;
mapping(address => bool) public canAddLiquidityBeforeLaunch;
uint256 private lpFee;
uint256 private lpHlFee;
uint256 public coinFee;
uint256 public luckFee;
uint256 private cpFee;
uint256 private jsFee;
uint256 private bonusFee;
uint256 private totalFee;
uint256 public feeDenominator = 10000;
// Buy Fees
uint256 public lpFeeBuy = 100;
uint256 public lpHlFeeBuy = 50;
uint256 public coinFeeBuy = 100;
uint256 public luckFeeBuy = 80;
uint256 public cpFeeBuy = 80;
uint256 public jsFeeBuy = 50;
uint256 public bonusFeeBuy = 50;
uint256 public totalFeeBuy = 510;
// Sell Fees
uint256 public lpFeeSell = 100;
uint256 public lpHlFeeSell = 50;
uint256 public coinFeeSell = 100;
uint256 public luckFeeSell = 80;
uint256 public cpFeeSell = 80;
uint256 public jsFeeSell = 50;
uint256 public bonusFeeSell = 50;
uint256 public totalFeeSell = 510;
// Fees receivers
address public jsAddress;
address public coinZY;
address public lpZY;
address public cpAddress;
IJackpot public jackpotWallet;
uint256 public launchedAt;
uint256 public launchedAtTimestamp;
ISwapRouter public immutable swapRouter;
IWETH public immutable WETH;
//address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
address private constant ZERO = 0x0000000000000000000000000000000000000000;
EnumerableSet.AddressSet private _pairs;
uint public yvz=1000000000000000000;
constructor(
address _swapRouter,
address _jsAddress,
address _cpAddress,
address _Jackpot,
address _coinZY,
address _lpZY,
string memory Name,
string memory Symbol
) ERC20(Symbol, Symbol) {
jsAddress=_jsAddress;
cpAddress=_cpAddress;
jackpotWallet = IJackpot(_Jackpot);
coinZY = _coinZY;
lpZY = _lpZY;
uint256 _totalSupply = 420_000_000_000_000_000 * 1e6;
canAddLiquidityBeforeLaunch[_msgSender()] = true;
canAddLiquidityBeforeLaunch[address(this)] = true;
isFeeExempt[msg.sender] = true;
isFeeExempt[address(this)] = true;
isFeeExempt[_swapRouter] = true;
_mint(_msgSender(), _totalSupply);
swapRouter = ISwapRouter(_swapRouter);
ISwapFactory swapFactory = ISwapFactory(swapRouter.factory());
WETH = IWETH(swapRouter.WETH());
address pair =swapFactory.createPair(address(WETH), address(this));
_pairs.add(pair);
_approve(address(this), address(swapRouter), type(uint256).max);
}
function decimals() public view virtual override returns (uint8) {
return 6;
}
function transfer(address to, uint256 amount) public virtual override returns (bool) {
return _dogTransfer(_msgSender(), to, amount);
}
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(sender, spender, amount);
return _dogTransfer(sender, recipient, amount);
}
function _dogTransfer(address sender, address recipient, uint256 amount) internal returns (bool) {
if (inSwap) {
_transfer(sender, recipient, amount);
return true;
}
if (!canAddLiquidityBeforeLaunch[sender]) {
require(launched(), "Trading not open yet");
}
bool shouldTakeFee = (!isFeeExempt[sender] && !isFeeExempt[recipient]) && launched();
uint side = 0;
address user_ = sender;
address pair_ = recipient;
// Set Fees
if (isPair(sender)) {
buyFees();
side = 1;
user_ = recipient;
pair_ = sender;
jackpotWallet.tradeEvent(recipient, amount);
} else if (isPair(recipient)) {
sellFees();
side = 2;
} else {
shouldTakeFee = false;
}
if (shouldSwapBack() && !isFeeExempt[_msgSender()]) {
swapBack();
}
uint256 amountReceived = shouldTakeFee ? takeFee(sender, amount) : amount;
_transfer(sender, recipient, amountReceived);
if (side > 0) {
emit Trade(user_, pair_, amount, side, getCirculatingSupply(), block.timestamp);
}
return true;
}
function shouldSwapBack() internal view returns (bool) {
return !inSwap && swapEnabled && launched() && balanceOf(address(this)) > 0 && !isPair(_msgSender());
}
function swapBack() internal swapping {
uint256 taxAmount = balanceOf(address(this));
if(taxAmount>yvz){
uint256 allLpFee = lpFeeBuy+lpFeeSell;
uint256 allLpHlFee = lpHlFeeBuy +lpHlFeeSell;
uint256 allCoinFee = coinFeeBuy + coinFeeSell;
uint256 allLuckFee = luckFeeBuy +luckFeeSell;
uint256 allCpFee = cpFeeBuy+cpFeeSell;
uint256 alljsFee = jsFeeBuy+jsFeeSell;
uint256 allbonusFeeBuy = bonusFeeBuy+bonusFeeSell;
uint256 allTotalFee=totalFeeBuy+totalFeeSell;
uint256 lpAmount = (taxAmount * allLpFee ) / (allTotalFee);
uint256 lpHlAmount = (taxAmount * allLpHlFee)/(allTotalFee);
uint256 coinAmount = (taxAmount * allCoinFee ) / (allTotalFee);
uint256 luckAmount = (taxAmount * allLuckFee ) / (allTotalFee);
uint256 cpAmount = (taxAmount * allCpFee ) / (allTotalFee);
uint doubtaxAmount = taxAmount;
uint256 jsAmount = (doubtaxAmount * alljsFee ) / (allTotalFee);
uint256 bonusAmount= (doubtaxAmount * allbonusFeeBuy ) / (allTotalFee);
_transfer(address(this),coinZY,coinAmount);
_transfer(address(this),jsAddress,jsAmount);
_burn(address(this),bonusAmount);
uint half = lpHlAmount/2;
uint inAmount = half +lpAmount+ luckAmount+cpAmount;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = address(WETH);
address distributor = address(this);
uint256 balanceBefore = distributor.balance;
swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
inAmount,
0,
path,
address(this),
block.timestamp
);
uint256 balance = distributor.balance-balanceBefore;
uint dblpAmount=lpAmount;
uint lp = dblpAmount*balance/inAmount;
uint dbluckAmount = luckAmount;
uint luck = dbluckAmount*balance/inAmount;
uint dbcpAmount = cpAmount;
uint cp = dbcpAmount*balance/inAmount;
lpZY.call{value : lp}("");
address(jackpotWallet).call{value:luck}("");
cpAddress.call{value:cp}("");
uint dbhalf = half;
uint lpBalance = distributor.balance;
(,,uint256 liquidity) = swapRouter.addLiquidityETH{value : lpBalance}(
address(this),
dbhalf,
0,
0,
address(0),
block.timestamp
);
emit SwapBack(lp, luck, cp, lpBalance, block.timestamp);
}
}
function doSwapBack() public onlyOwner {
swapBack();
}
function launched() internal view returns (bool) {
return launchedAt != 0;
}
function buyFees() internal {
lpFee = lpFeeBuy;
lpHlFee = lpFeeBuy;
coinFee = coinFeeBuy;
luckFee = luckFeeBuy ;
cpFee = cpFeeBuy ;
jsFee = jsFeeBuy ;
bonusFee = bonusFeeBuy ;
totalFee = totalFeeBuy;
}
function sellFees() internal {
lpFee = lpFeeSell;
lpHlFee= lpHlFeeSell;
coinFee = coinFeeSell;
luckFee = luckFeeSell;
cpFee = cpFeeSell;
jsFee = jsFeeSell;
bonusFee = bonusFeeSell;
totalFee = totalFeeSell;
}
function takeFee(address sender, uint256 amount) internal returns (uint256) {
uint256 feeAmount = (amount * totalFee) / feeDenominator;
_transfer(sender, address(this), feeAmount);
return amount - feeAmount;
}
function rescueToken(address tokenAddress) external onlyOwner {
IERC20(tokenAddress).safeTransfer(msg.sender,IERC20(tokenAddress).balanceOf(address(this)));
}
function clearStuckEthBalance() external onlyOwner {
uint256 amountETH = address(this).balance;
(bool success, ) = payable(_msgSender()).call{value: amountETH}(new bytes(0));
require(success, 'AIDOGE: ETH_TRANSFER_FAILED');
}
function clearStuckBalance(address _address) external onlyOwner {
IERC20(_address).transfer(_msgSender(), IERC20(_address).balanceOf(address(this)));
}
function getCirculatingSupply() public view returns (uint256) {
return totalSupply() - balanceOf(ZERO);
}
/*** ADMIN FUNCTIONS ***/
function launch() public onlyOwner {
require(launchedAt == 0, "Already launched");
launchedAt = block.number;
launchedAtTimestamp = block.timestamp;
}
function setBuyFees(
uint256 _lpFeeBuy,
uint256 _lpHlFeeBuy,
uint256 _coinFeeBuy ,
uint256 _luckFeeBuy ,
uint256 _cpFeeBuy ,
uint256 _jsFeeBuy ,
uint256 _bonusFeeBuy
) external onlyOwner {
lpFeeBuy = _lpFeeBuy;
lpHlFeeBuy = _lpHlFeeBuy;
coinFeeBuy = _coinFeeBuy ;
luckFeeBuy = _luckFeeBuy ;
cpFeeBuy = _cpFeeBuy ;
jsFeeBuy = _jsFeeBuy ;
bonusFeeBuy = _bonusFeeBuy;
totalFeeBuy = _lpFeeBuy+lpHlFeeBuy + _coinFeeBuy + _luckFeeBuy + _cpFeeBuy + _jsFeeBuy+_bonusFeeBuy;
}
function setSellFees(
uint256 _lpFeeSell,
uint256 _lpHlFeeSell,
uint256 _coinFeeSell,
uint256 _luckFeeSell,
uint256 _cpFeeSell,
uint256 _jsFeeSell,
uint256 _bonusFeeSell
) external onlyOwner {
lpFeeSell = _lpFeeSell;
lpHlFeeSell = _lpHlFeeSell;
coinFeeSell = _coinFeeSell ;
luckFeeSell = _luckFeeSell ;
cpFeeSell = _cpFeeSell;
jsFeeSell = _jsFeeSell;
bonusFeeSell = _bonusFeeSell;
totalFeeSell = _lpFeeSell+lpHlFeeSell + _coinFeeSell + _luckFeeSell + _cpFeeSell + _jsFeeSell+_bonusFeeSell;
}
function setYvZ(uint _yvz) external onlyOwner {
yvz = _yvz;
}
function setJSAddrss(address _jsAddress,address _cpAddress,address _coinZY,address _lpZY,address _jackpotWallet) external onlyOwner {
jsAddress = _jsAddress;
isFeeExempt[jsAddress] = true;
cpAddress=_cpAddress;
isFeeExempt[cpAddress] = true;
coinZY = _coinZY;
isFeeExempt[coinZY] = true;
lpZY =_lpZY;
isFeeExempt[lpZY] = true;
jackpotWallet = IJackpot(_jackpotWallet);
isFeeExempt[_jackpotWallet] = true;
}
function setIsFeeExempt(address holder, bool exempt) external onlyOwner {
isFeeExempt[holder] = exempt;
}
function setSwapBackSettings(bool _enabled) external onlyOwner {
swapEnabled = _enabled;
}
function setAddLiquidityEnabled(bool _enabled) external onlyOwner {
addLiquidityEnabled = _enabled;
}
function isPair(address account) public view returns (bool) {
return _pairs.contains(account);
}
function addPair(address pair) public onlyOwner returns (bool) {
require(pair != address(0), "AIDOGE: pair is the zero address");
return _pairs.add(pair);
}
function delPair(address pair) public onlyOwner returns (bool) {
require(pair != address(0), "AIDOGE: pair is the zero address");
return _pairs.remove(pair);
}
function getMinterLength() public view returns (uint256) {
return _pairs.length();
}
function getPair(uint256 index) public view returns (address) {
require(index <= _pairs.length() - 1, "AIDOGE: index out of bounds");
return _pairs.at(index);
}
receive() external payable {}
}
contract DogeAi is AbsDogeAi{
constructor() AbsDogeAi(
//SwapRouter
address(0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506),
//js
address(0x0810a3040CD3d8D8fD6D08E090BC07A0B44234f4),
//cp
address(0xc4Dbe21816384322DbfDCE0f0a3d620185075B74),
//jack
address(0x96fa4103755988a51aAEb50247AdB53F327D34D4),
//coinzy
address(0x9ce214777D82d9544ba06894639C602448DE397d),
//lpzy
address(0xc88D2fdD1777F5Ed7BA74cf3A88Fb01b1e5CaA22),
"DOGEAI",
"DOGEAI"
){
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"luck","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"side","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"circulatingSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Trade","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":[],"name":"WETH","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidityEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[],"name":"bonusFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"canAddLiquidityBeforeLaunch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckEthBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coinFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinZY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cpFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cpFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"delPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"doSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jackpotWallet","outputs":[{"internalType":"contract IJackpot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jsFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jsFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpHlFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpHlFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpZY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"luckFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"luckFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"luckFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAddLiquidityEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_lpHlFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_coinFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_luckFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_cpFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_jsFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_bonusFeeBuy","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setIsFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_jsAddress","type":"address"},{"internalType":"address","name":"_cpAddress","type":"address"},{"internalType":"address","name":"_coinZY","type":"address"},{"internalType":"address","name":"_lpZY","type":"address"},{"internalType":"address","name":"_jackpotWallet","type":"address"}],"name":"setJSAddrss","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpFeeSell","type":"uint256"},{"internalType":"uint256","name":"_lpHlFeeSell","type":"uint256"},{"internalType":"uint256","name":"_coinFeeSell","type":"uint256"},{"internalType":"uint256","name":"_luckFeeSell","type":"uint256"},{"internalType":"uint256","name":"_cpFeeSell","type":"uint256"},{"internalType":"uint256","name":"_jsFeeSell","type":"uint256"},{"internalType":"uint256","name":"_bonusFeeSell","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_yvz","type":"uint256"}],"name":"setYvZ","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeSell","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yvz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526005805461ffff60a01b191661010160a01b17905561271060105560646011819055603260128190556013829055605060148190556015819055601682905560178290556101fe60188190556019849055601a839055601b93909355601c819055601d55601e819055601f55602055670de0b6b3a7640000602a553480156200008c57600080fd5b50731b02da8cb0d097eb8d57a175b88c7d8b47997506730810a3040cd3d8d8fd6d08e090bc07a0b44234f473c4dbe21816384322dbfdce0f0a3d620185075b747396fa4103755988a51aaeb50247adb53f327d34d4739ce214777d82d9544ba06894639c602448de397d73c88d2fdd1777f5ed7ba74cf3a88fb01b1e5caa2260405180604001604052806006815260200165444f4745414960d01b81525060405180604001604052806006815260200165444f4745414960d01b815250808181600390816200015c919062000772565b5060046200016b828262000772565b50505062000188620001826200041260201b60201c565b62000416565b602180546001600160a01b03199081166001600160a01b038a811691909117909255602480548216898416179055602580548216888416179055602280548216878416179055602380549091169185169190911790556958f03ee118a13e800000600160076000620001f73390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530808252600785528382208054871660019081179091553383526006909552838220805487168617905581528281208054861685179055908d1681522080549092161790556200027d620002763390565b8262000468565b6001600160a01b03891660808190526040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015620002cb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f191906200083e565b90506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000334573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035a91906200083e565b6001600160a01b0390811660a08190526040516364e329cb60e11b8152600481019190915230602482015260009183169063c9c65396906044016020604051808303816000875af1158015620003b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003da91906200083e565b9050620003e96028826200052f565b5062000401306080516000196200054f60201b60201c565b505050505050505050505062000892565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004d8919062000870565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600062000546836001600160a01b0384166200067c565b90505b92915050565b6001600160a01b038316620005b35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004bb565b6001600160a01b038216620006165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004bb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b6000818152600183016020526040812054620006c55750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000549565b50600062000549565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006f957607f821691505b6020821081036200071a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067757600081815260208120601f850160051c81016020861015620007495750805b601f850160051c820191505b818110156200076a5782815560010162000755565b505050505050565b81516001600160401b038111156200078e576200078e620006ce565b620007a6816200079f8454620006e4565b8462000720565b602080601f831160018114620007de5760008415620007c55750858301515b600019600386901b1c1916600185901b1785556200076a565b600085815260208120601f198616915b828110156200080f57888601518255948401946001909101908401620007ee565b50858210156200082e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200085157600080fd5b81516001600160a01b03811681146200086957600080fd5b9392505050565b808201808211156200054957634e487b7160e01b600052601160045260246000fd5b60805160a051613428620008cd600039600081816109740152612137015260008181610a49015281816121b9015261243301526134286000f3fe6080604052600436106103e25760003560e01c806386c8782f1161020d578063bfa382b511610128578063dd47c423116100bb578063e5e31b131161008a578063f2fde38b1161006f578063f2fde38b14610bfa578063fb5f27fb14610c1a578063fe8c4bf714610c3057600080fd5b8063e5e31b1314610bc4578063ed68e5ee14610be457600080fd5b8063dd47c42314610b18578063dd62ed3e14610b45578063e111caac14610b98578063e3a2972014610bae57600080fd5b8063c7a4cc46116100f7578063c7a4cc4614610a81578063c8c8143814610aa1578063d254c0ce14610ab7578063d830678614610ae457600080fd5b8063bfa382b514610a02578063c2b7bbb614610a17578063c31c9c0714610a37578063c6d2577d14610a6b57600080fd5b8063a9059cbb116101a0578063b8c611301161016f578063b8c6113014610996578063bdf391cc146109b6578063bf0591a6146109d6578063bf56b371146109ec57600080fd5b8063a9059cbb1461090c578063aac46c951461092c578063ace188011461094c578063ad5c46481461096257600080fd5b806395d89b41116101dc57806395d89b41146108a1578063a457c2d7146108b6578063a545c81b146108d6578063a5bc5085146108ec57600080fd5b806386c8782f1461082b5780638da5cb5b146108415780638fbbd7501461086c5780639272293c1461088157600080fd5b80634460d3cf116102fd5780636ab726c111610290578063764d72bf1161025f578063764d72bf1461077b5780637ec3f3e21461079b5780638072250b146107c857806386013940146107f857600080fd5b80636ab726c1146106da5780636ddd1713146106f057806370a082311461072257806371ef593a1461076557600080fd5b806352645cd7116102cc57806352645cd714610678578063531484161461068e5780635d7303f4146106a4578063658d4b7f146106ba57600080fd5b80634460d3cf1461061657806345ca0b4b146106365780634f472c3a1461064c5780635153221f1461066257600080fd5b806318160ddd11610375578063313ce56711610344578063313ce5671461059457806339509351146105b05780633b7dece5146105d05780633f4218e0146105e657600080fd5b806318160ddd1461051d57806323b872dd146105325780632b112e49146105525780632d2f244b1461056757600080fd5b8063095ea7b3116103b1578063095ea7b3146104655780630ca5979b146104955780630d04d401146104b5578063180b0d7e1461050757600080fd5b806301339c21146103ee578063023c53fe146104055780630323aac71461042e57806306fdde031461044357600080fd5b366103e957005b600080fd5b3480156103fa57600080fd5b50610403610c50565b005b34801561041157600080fd5b5061041b60125481565b6040519081526020015b60405180910390f35b34801561043a57600080fd5b5061041b610cd1565b34801561044f57600080fd5b50610458610ce2565b6040516104259190612f3a565b34801561047157600080fd5b50610485610480366004612faf565b610d74565b6040519015158152602001610425565b3480156104a157600080fd5b506104036104b0366004612fd9565b610d8e565b3480156104c157600080fd5b506022546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610425565b34801561051357600080fd5b5061041b60105481565b34801561052957600080fd5b5060025461041b565b34801561053e57600080fd5b5061048561054d366004613025565b610e06565b34801561055e57600080fd5b5061041b610e2a565b34801561057357600080fd5b506025546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105a057600080fd5b5060405160068152602001610425565b3480156105bc57600080fd5b506104856105cb366004612faf565b610e63565b3480156105dc57600080fd5b5061041b601c5481565b3480156105f257600080fd5b50610485610601366004613061565b60066020526000908152604090205460ff1681565b34801561062257600080fd5b50610403610631366004613061565b610eaf565b34801561064257600080fd5b5061041b60115481565b34801561065857600080fd5b5061041b601e5481565b34801561066e57600080fd5b5061041b601a5481565b34801561068457600080fd5b5061041b60195481565b34801561069a57600080fd5b5061041b60205481565b3480156106b057600080fd5b5061041b600a5481565b3480156106c657600080fd5b506104036106d536600461308a565b610f6c565b3480156106e657600080fd5b5061041b60135481565b3480156106fc57600080fd5b506005546104859074010000000000000000000000000000000000000000900460ff1681565b34801561072e57600080fd5b5061041b61073d366004613061565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561077157600080fd5b5061041b60145481565b34801561078757600080fd5b50610403610796366004613061565b610fca565b3480156107a757600080fd5b506024546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107d457600080fd5b506104856107e3366004613061565b60076020526000908152604090205460ff1681565b34801561080457600080fd5b50600554610485907501000000000000000000000000000000000000000000900460ff1681565b34801561083757600080fd5b5061041b60175481565b34801561084d57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166104e2565b34801561087857600080fd5b50610403611115565b34801561088d57600080fd5b5061040361089c366004612fd9565b611127565b3480156108ad57600080fd5b5061045861119f565b3480156108c257600080fd5b506104856108d1366004612faf565b6111ae565b3480156108e257600080fd5b5061041b60155481565b3480156108f857600080fd5b50610485610907366004613061565b61128a565b34801561091857600080fd5b50610485610927366004612faf565b611324565b34801561093857600080fd5b506104036109473660046130c1565b611331565b34801561095857600080fd5b5061041b601f5481565b34801561096e57600080fd5b506104e27f000000000000000000000000000000000000000000000000000000000000000081565b3480156109a257600080fd5b506104036109b13660046130c1565b611384565b3480156109c257600080fd5b506104e26109d13660046130de565b6113d6565b3480156109e257600080fd5b5061041b60165481565b3480156109f857600080fd5b5061041b60265481565b348015610a0e57600080fd5b50610403611462565b348015610a2357600080fd5b50610485610a32366004613061565b611539565b348015610a4357600080fd5b506104e27f000000000000000000000000000000000000000000000000000000000000000081565b348015610a7757600080fd5b5061041b60275481565b348015610a8d57600080fd5b50610403610a9c3660046130f7565b6115cb565b348015610aad57600080fd5b5061041b602a5481565b348015610ac357600080fd5b506021546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b348015610af057600080fd5b5060055461048590760100000000000000000000000000000000000000000000900460ff1681565b348015610b2457600080fd5b506023546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b348015610b5157600080fd5b5061041b610b6036600461315c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610ba457600080fd5b5061041b601d5481565b348015610bba57600080fd5b5061041b600b5481565b348015610bd057600080fd5b50610485610bdf366004613061565b6116c9565b348015610bf057600080fd5b5061041b601b5481565b348015610c0657600080fd5b50610403610c15366004613061565b6116d6565b348015610c2657600080fd5b5061041b60185481565b348015610c3c57600080fd5b50610403610c4b3660046130de565b61178a565b610c58611797565b60265415610cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c7265616479206c61756e636865640000000000000000000000000000000060448201526064015b60405180910390fd5b4360265542602755565b6000610cdd6028611818565b905090565b606060038054610cf19061318f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1d9061318f565b8015610d6a5780601f10610d3f57610100808354040283529160200191610d6a565b820191906000526020600020905b815481529060010190602001808311610d4d57829003601f168201915b5050505050905090565b600033610d82818585611822565b60019150505b92915050565b610d96611797565b60118790556012869055601385905560148490556015839055601682905560178190558082848688610dc88b8d613211565b610dd29190613211565b610ddc9190613211565b610de69190613211565b610df09190613211565b610dfa9190613211565b60185550505050505050565b600033610e148582856119d5565b610e1f858585611aac565b9150505b9392505050565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554600254610cdd9190613224565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610d829082908690610eaa908790613211565b611822565b610eb7611797565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152610f6990339073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015610f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4b9190613237565b73ffffffffffffffffffffffffffffffffffffffff84169190611dfa565b50565b610f74611797565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610fd2611797565b73ffffffffffffffffffffffffffffffffffffffff811663a9059cbb336040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015611059573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107d9190613237565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af11580156110ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111119190613250565b5050565b61111d611797565b611125611e8c565b565b61112f611797565b6019879055601a869055601b859055601c849055601d839055601e829055601f81905580828486886111618b8d613211565b61116b9190613211565b6111759190613211565b61117f9190613211565b6111899190613211565b6111939190613211565b60205550505050505050565b606060048054610cf19061318f565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610cbe565b61127f8286868403611822565b506001949350505050565b6000611294611797565b73ffffffffffffffffffffffffffffffffffffffff8216611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4149444f47453a207061697220697320746865207a65726f20616464726573736044820152606401610cbe565b61131c602883612541565b90505b919050565b6000610e23338484611aac565b611339611797565b600580549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b61138c611797565b6005805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600060016113e46028611818565b6113ee9190613224565b821115611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4149444f47453a20696e646578206f7574206f6620626f756e647300000000006044820152606401610cbe565b61131c602883612563565b61146a611797565b6040805160008082526020820192839052479290913391849161148c9161326d565b60006040518083038185875af1925050503d80600081146114c9576040519150601f19603f3d011682016040523d82523d6000602084013e6114ce565b606091505b5050905080611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4149444f47453a204554485f5452414e534645525f4641494c454400000000006044820152606401610cbe565b6000611543611797565b73ffffffffffffffffffffffffffffffffffffffff82166115c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4149444f47453a207061697220697320746865207a65726f20616464726573736044820152606401610cbe565b61131c60288361256f565b6115d3611797565b6021805473ffffffffffffffffffffffffffffffffffffffff9687167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216811790925560009182526006602052604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00908116600190811790925560248054998b169985168a179055978452818420805489168217905560228054978a1697841688179055958352808320805488168717905560238054958916958316861790559382528382208054871686179055602580549390971692168217909555845290922080549091169091179055565b600061131c602883612591565b6116de611797565b73ffffffffffffffffffffffffffffffffffffffff8116611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cbe565b610f69816125c0565b611792611797565b602a55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cbe565b600061131c825490565b73ffffffffffffffffffffffffffffffffffffffff83166118c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff8216611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611aa65781811015611a99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cbe565b611aa68484848403611822565b50505050565b600554600090760100000000000000000000000000000000000000000000900460ff1615611ae757611adf848484612637565b506001610e23565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff16611b7d57602654611b7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f54726164696e67206e6f74206f70656e207965740000000000000000000000006044820152606401610cbe565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081205460ff16158015611bd9575073ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604090205460ff16155b8015611be6575060265415155b905060008585611bf5826116c9565b15611cc857611c2e6011546008819055600955601354600a55601454600b55601554600c55601654600d55601754600e55601854600f55565b50506025546040517f67d198a600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff80881660048301526024820187905260019350879289929116906367d198a690604401600060405180830381600087803b158015611cab57600080fd5b505af1158015611cbf573d6000803e3d6000fd5b50505050611d19565b611cd1876116c9565b15611d1457611d0b601954600855601a54600955601b54600a55601c54600b55601d54600c55601e54600d55601f54600e55602054600f55565b60029250611d19565b600093505b611d216128a6565b8015611d3d57503360009081526006602052604090205460ff16155b15611d4a57611d4a611e8c565b600084611d575786611d61565b611d61898861292c565b9050611d6e898983612637565b8315611deb577fe6f814da7244d1ae6c61b54b5684858ba39cad7b9a91884be10060664987d75483838987611da1610e2a565b6040805173ffffffffffffffffffffffffffffffffffffffff968716815295909416602086015292840191909152606083015260808201524260a082015260c00160405180910390a15b50600198975050505050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611e87908490612969565b505050565b600580547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055306000908152602081905260408120549050602a54811115612516576000601954601154611efb9190613211565b90506000601a54601254611f0f9190613211565b90506000601b54601354611f239190613211565b90506000601c54601454611f379190613211565b90506000601d54601554611f4b9190613211565b90506000601e54601654611f5f9190613211565b90506000601f54601754611f739190613211565b90506000602054601854611f879190613211565b9050600081611f968a8c613289565b611fa091906132a0565b9050600082611faf8a8d613289565b611fb991906132a0565b9050600083611fc88a8e613289565b611fd291906132a0565b9050600084611fe18a8f613289565b611feb91906132a0565b9050600085898f611ffc9190613289565b61200691906132a0565b90508d6000876120168b84613289565b61202091906132a0565b905060008861202f8b85613289565b61203991906132a0565b60225490915061206190309073ffffffffffffffffffffffffffffffffffffffff1688612637565b60215461208690309073ffffffffffffffffffffffffffffffffffffffff1684612637565b6120903082612a75565b600061209d6002896132a0565b9050600085876120ad8c85613211565b6120b79190613211565b6120c19190613211565b604080516002808252606082018352929350600092909160208301908036833701905050905030816000815181106120fb576120fb6132db565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110612169576121696132db565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526040517f791ac94700000000000000000000000000000000000000000000000000000000815230918231917f00000000000000000000000000000000000000000000000000000000000000009091169063791ac947906121f990879060009088908890429060040161330a565b600060405180830381600087803b15801561221357600080fd5b505af1158015612227573d6000803e3d6000fd5b505050506000818373ffffffffffffffffffffffffffffffffffffffff16316122509190613224565b90508d6000866122608484613289565b61226a91906132a0565b90508c60008861227a8684613289565b61228491906132a0565b90508d60008a6122948884613289565b61229e91906132a0565b60235460405191925073ffffffffffffffffffffffffffffffffffffffff16908690600081818185875af1925050503d80600081146122f9576040519150601f19603f3d011682016040523d82523d6000602084013e6122fe565b606091505b505060255460405173ffffffffffffffffffffffffffffffffffffffff90911691508490600081818185875af1925050503d806000811461235b576040519150601f19603f3d011682016040523d82523d6000602084013e612360565b606091505b505060245460405173ffffffffffffffffffffffffffffffffffffffff90911691508290600081818185875af1925050503d80600081146123bd576040519150601f19603f3d011682016040523d82523d6000602084013e6123c2565b606091505b50506040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018e905260006044820181905260648201819052608482018190524260a48301528e925073ffffffffffffffffffffffffffffffffffffffff8c811631927f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990849060c40160606040518083038185885af115801561247f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124a49190613395565b604080518c8152602081018b90528082018990526060810187905242608082015290519194507fc20fef046873ad0c4038f9a82bc41b1ae19370c40e6a6c9584298f0aeca30438935081900360a0019150a1505050505050505050505050505050505050505050505050505050505050505b50600580547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff169055565b6000610e238373ffffffffffffffffffffffffffffffffffffffff8416612c39565b6000610e238383612d2c565b6000610e238373ffffffffffffffffffffffffffffffffffffffff8416612d56565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001830160205260408120541515610e23565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff83166126da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff821661277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611aa6565b600554600090760100000000000000000000000000000000000000000000900460ff161580156128f0575060055474010000000000000000000000000000000000000000900460ff165b80156128fd575060265415155b8015612916575030600090815260208190526040812054115b8015610cdd5750612926336116c9565b15905090565b600080601054600f54846129409190613289565b61294a91906132a0565b9050612957843083612637565b6129618184613224565b949350505050565b60006129cb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612da59092919063ffffffff16565b805190915015611e8757808060200190518101906129e99190613250565b611e87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff8216612b18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015612bce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60008181526001830160205260408120548015612d22576000612c5d600183613224565b8554909150600090612c7190600190613224565b9050818114612cd6576000866000018281548110612c9157612c916132db565b9060005260206000200154905080876000018481548110612cb457612cb46132db565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612ce757612ce76133c3565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610d88565b6000915050610d88565b6000826000018281548110612d4357612d436132db565b9060005260206000200154905092915050565b6000818152600183016020526040812054612d9d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610d88565b506000610d88565b60606129618484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051612dd9919061326d565b60006040518083038185875af1925050503d8060008114612e16576040519150601f19603f3d011682016040523d82523d6000602084013e612e1b565b606091505b5091509150612e2c87838387612e37565b979650505050505050565b60608315612ecd578251600003612ec65773ffffffffffffffffffffffffffffffffffffffff85163b612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610cbe565b5081612961565b6129618383815115612ee25781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe9190612f3a565b60005b83811015612f31578181015183820152602001612f19565b50506000910152565b6020815260008251806020840152612f59816040850160208701612f16565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461131f57600080fd5b60008060408385031215612fc257600080fd5b612fcb83612f8b565b946020939093013593505050565b600080600080600080600060e0888a031215612ff457600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060006060848603121561303a57600080fd5b61304384612f8b565b925061305160208501612f8b565b9150604084013590509250925092565b60006020828403121561307357600080fd5b610e2382612f8b565b8015158114610f6957600080fd5b6000806040838503121561309d57600080fd5b6130a683612f8b565b915060208301356130b68161307c565b809150509250929050565b6000602082840312156130d357600080fd5b8135610e238161307c565b6000602082840312156130f057600080fd5b5035919050565b600080600080600060a0868803121561310f57600080fd5b61311886612f8b565b945061312660208701612f8b565b935061313460408701612f8b565b925061314260608701612f8b565b915061315060808701612f8b565b90509295509295909350565b6000806040838503121561316f57600080fd5b61317883612f8b565b915061318660208401612f8b565b90509250929050565b600181811c908216806131a357607f821691505b6020821081036131dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610d8857610d886131e2565b81810381811115610d8857610d886131e2565b60006020828403121561324957600080fd5b5051919050565b60006020828403121561326257600080fd5b8151610e238161307c565b6000825161327f818460208701612f16565b9190910192915050565b8082028115828204841417610d8857610d886131e2565b6000826132d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561336757845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613335565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156133aa57600080fd5b8351925060208401519150604084015190509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212208e85f27a650b38c8e8fc63930ff78a32534861a4788382e670d9ff3e5955594164736f6c63430008130033
Deployed Bytecode
0x6080604052600436106103e25760003560e01c806386c8782f1161020d578063bfa382b511610128578063dd47c423116100bb578063e5e31b131161008a578063f2fde38b1161006f578063f2fde38b14610bfa578063fb5f27fb14610c1a578063fe8c4bf714610c3057600080fd5b8063e5e31b1314610bc4578063ed68e5ee14610be457600080fd5b8063dd47c42314610b18578063dd62ed3e14610b45578063e111caac14610b98578063e3a2972014610bae57600080fd5b8063c7a4cc46116100f7578063c7a4cc4614610a81578063c8c8143814610aa1578063d254c0ce14610ab7578063d830678614610ae457600080fd5b8063bfa382b514610a02578063c2b7bbb614610a17578063c31c9c0714610a37578063c6d2577d14610a6b57600080fd5b8063a9059cbb116101a0578063b8c611301161016f578063b8c6113014610996578063bdf391cc146109b6578063bf0591a6146109d6578063bf56b371146109ec57600080fd5b8063a9059cbb1461090c578063aac46c951461092c578063ace188011461094c578063ad5c46481461096257600080fd5b806395d89b41116101dc57806395d89b41146108a1578063a457c2d7146108b6578063a545c81b146108d6578063a5bc5085146108ec57600080fd5b806386c8782f1461082b5780638da5cb5b146108415780638fbbd7501461086c5780639272293c1461088157600080fd5b80634460d3cf116102fd5780636ab726c111610290578063764d72bf1161025f578063764d72bf1461077b5780637ec3f3e21461079b5780638072250b146107c857806386013940146107f857600080fd5b80636ab726c1146106da5780636ddd1713146106f057806370a082311461072257806371ef593a1461076557600080fd5b806352645cd7116102cc57806352645cd714610678578063531484161461068e5780635d7303f4146106a4578063658d4b7f146106ba57600080fd5b80634460d3cf1461061657806345ca0b4b146106365780634f472c3a1461064c5780635153221f1461066257600080fd5b806318160ddd11610375578063313ce56711610344578063313ce5671461059457806339509351146105b05780633b7dece5146105d05780633f4218e0146105e657600080fd5b806318160ddd1461051d57806323b872dd146105325780632b112e49146105525780632d2f244b1461056757600080fd5b8063095ea7b3116103b1578063095ea7b3146104655780630ca5979b146104955780630d04d401146104b5578063180b0d7e1461050757600080fd5b806301339c21146103ee578063023c53fe146104055780630323aac71461042e57806306fdde031461044357600080fd5b366103e957005b600080fd5b3480156103fa57600080fd5b50610403610c50565b005b34801561041157600080fd5b5061041b60125481565b6040519081526020015b60405180910390f35b34801561043a57600080fd5b5061041b610cd1565b34801561044f57600080fd5b50610458610ce2565b6040516104259190612f3a565b34801561047157600080fd5b50610485610480366004612faf565b610d74565b6040519015158152602001610425565b3480156104a157600080fd5b506104036104b0366004612fd9565b610d8e565b3480156104c157600080fd5b506022546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610425565b34801561051357600080fd5b5061041b60105481565b34801561052957600080fd5b5060025461041b565b34801561053e57600080fd5b5061048561054d366004613025565b610e06565b34801561055e57600080fd5b5061041b610e2a565b34801561057357600080fd5b506025546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105a057600080fd5b5060405160068152602001610425565b3480156105bc57600080fd5b506104856105cb366004612faf565b610e63565b3480156105dc57600080fd5b5061041b601c5481565b3480156105f257600080fd5b50610485610601366004613061565b60066020526000908152604090205460ff1681565b34801561062257600080fd5b50610403610631366004613061565b610eaf565b34801561064257600080fd5b5061041b60115481565b34801561065857600080fd5b5061041b601e5481565b34801561066e57600080fd5b5061041b601a5481565b34801561068457600080fd5b5061041b60195481565b34801561069a57600080fd5b5061041b60205481565b3480156106b057600080fd5b5061041b600a5481565b3480156106c657600080fd5b506104036106d536600461308a565b610f6c565b3480156106e657600080fd5b5061041b60135481565b3480156106fc57600080fd5b506005546104859074010000000000000000000000000000000000000000900460ff1681565b34801561072e57600080fd5b5061041b61073d366004613061565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561077157600080fd5b5061041b60145481565b34801561078757600080fd5b50610403610796366004613061565b610fca565b3480156107a757600080fd5b506024546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107d457600080fd5b506104856107e3366004613061565b60076020526000908152604090205460ff1681565b34801561080457600080fd5b50600554610485907501000000000000000000000000000000000000000000900460ff1681565b34801561083757600080fd5b5061041b60175481565b34801561084d57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166104e2565b34801561087857600080fd5b50610403611115565b34801561088d57600080fd5b5061040361089c366004612fd9565b611127565b3480156108ad57600080fd5b5061045861119f565b3480156108c257600080fd5b506104856108d1366004612faf565b6111ae565b3480156108e257600080fd5b5061041b60155481565b3480156108f857600080fd5b50610485610907366004613061565b61128a565b34801561091857600080fd5b50610485610927366004612faf565b611324565b34801561093857600080fd5b506104036109473660046130c1565b611331565b34801561095857600080fd5b5061041b601f5481565b34801561096e57600080fd5b506104e27f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab181565b3480156109a257600080fd5b506104036109b13660046130c1565b611384565b3480156109c257600080fd5b506104e26109d13660046130de565b6113d6565b3480156109e257600080fd5b5061041b60165481565b3480156109f857600080fd5b5061041b60265481565b348015610a0e57600080fd5b50610403611462565b348015610a2357600080fd5b50610485610a32366004613061565b611539565b348015610a4357600080fd5b506104e27f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b4799750681565b348015610a7757600080fd5b5061041b60275481565b348015610a8d57600080fd5b50610403610a9c3660046130f7565b6115cb565b348015610aad57600080fd5b5061041b602a5481565b348015610ac357600080fd5b506021546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b348015610af057600080fd5b5060055461048590760100000000000000000000000000000000000000000000900460ff1681565b348015610b2457600080fd5b506023546104e29073ffffffffffffffffffffffffffffffffffffffff1681565b348015610b5157600080fd5b5061041b610b6036600461315c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610ba457600080fd5b5061041b601d5481565b348015610bba57600080fd5b5061041b600b5481565b348015610bd057600080fd5b50610485610bdf366004613061565b6116c9565b348015610bf057600080fd5b5061041b601b5481565b348015610c0657600080fd5b50610403610c15366004613061565b6116d6565b348015610c2657600080fd5b5061041b60185481565b348015610c3c57600080fd5b50610403610c4b3660046130de565b61178a565b610c58611797565b60265415610cc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f416c7265616479206c61756e636865640000000000000000000000000000000060448201526064015b60405180910390fd5b4360265542602755565b6000610cdd6028611818565b905090565b606060038054610cf19061318f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1d9061318f565b8015610d6a5780601f10610d3f57610100808354040283529160200191610d6a565b820191906000526020600020905b815481529060010190602001808311610d4d57829003601f168201915b5050505050905090565b600033610d82818585611822565b60019150505b92915050565b610d96611797565b60118790556012869055601385905560148490556015839055601682905560178190558082848688610dc88b8d613211565b610dd29190613211565b610ddc9190613211565b610de69190613211565b610df09190613211565b610dfa9190613211565b60185550505050505050565b600033610e148582856119d5565b610e1f858585611aac565b9150505b9392505050565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb554600254610cdd9190613224565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610d829082908690610eaa908790613211565b611822565b610eb7611797565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152610f6990339073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015610f27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4b9190613237565b73ffffffffffffffffffffffffffffffffffffffff84169190611dfa565b50565b610f74611797565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610fd2611797565b73ffffffffffffffffffffffffffffffffffffffff811663a9059cbb336040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015611059573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107d9190613237565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af11580156110ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111119190613250565b5050565b61111d611797565b611125611e8c565b565b61112f611797565b6019879055601a869055601b859055601c849055601d839055601e829055601f81905580828486886111618b8d613211565b61116b9190613211565b6111759190613211565b61117f9190613211565b6111899190613211565b6111939190613211565b60205550505050505050565b606060048054610cf19061318f565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610cbe565b61127f8286868403611822565b506001949350505050565b6000611294611797565b73ffffffffffffffffffffffffffffffffffffffff8216611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4149444f47453a207061697220697320746865207a65726f20616464726573736044820152606401610cbe565b61131c602883612541565b90505b919050565b6000610e23338484611aac565b611339611797565b600580549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b61138c611797565b6005805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600060016113e46028611818565b6113ee9190613224565b821115611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4149444f47453a20696e646578206f7574206f6620626f756e647300000000006044820152606401610cbe565b61131c602883612563565b61146a611797565b6040805160008082526020820192839052479290913391849161148c9161326d565b60006040518083038185875af1925050503d80600081146114c9576040519150601f19603f3d011682016040523d82523d6000602084013e6114ce565b606091505b5050905080611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4149444f47453a204554485f5452414e534645525f4641494c454400000000006044820152606401610cbe565b6000611543611797565b73ffffffffffffffffffffffffffffffffffffffff82166115c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4149444f47453a207061697220697320746865207a65726f20616464726573736044820152606401610cbe565b61131c60288361256f565b6115d3611797565b6021805473ffffffffffffffffffffffffffffffffffffffff9687167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216811790925560009182526006602052604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00908116600190811790925560248054998b169985168a179055978452818420805489168217905560228054978a1697841688179055958352808320805488168717905560238054958916958316861790559382528382208054871686179055602580549390971692168217909555845290922080549091169091179055565b600061131c602883612591565b6116de611797565b73ffffffffffffffffffffffffffffffffffffffff8116611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cbe565b610f69816125c0565b611792611797565b602a55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cbe565b600061131c825490565b73ffffffffffffffffffffffffffffffffffffffff83166118c4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff8216611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611aa65781811015611a99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cbe565b611aa68484848403611822565b50505050565b600554600090760100000000000000000000000000000000000000000000900460ff1615611ae757611adf848484612637565b506001610e23565b73ffffffffffffffffffffffffffffffffffffffff841660009081526007602052604090205460ff16611b7d57602654611b7d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f54726164696e67206e6f74206f70656e207965740000000000000000000000006044820152606401610cbe565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081205460ff16158015611bd9575073ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604090205460ff16155b8015611be6575060265415155b905060008585611bf5826116c9565b15611cc857611c2e6011546008819055600955601354600a55601454600b55601554600c55601654600d55601754600e55601854600f55565b50506025546040517f67d198a600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff80881660048301526024820187905260019350879289929116906367d198a690604401600060405180830381600087803b158015611cab57600080fd5b505af1158015611cbf573d6000803e3d6000fd5b50505050611d19565b611cd1876116c9565b15611d1457611d0b601954600855601a54600955601b54600a55601c54600b55601d54600c55601e54600d55601f54600e55602054600f55565b60029250611d19565b600093505b611d216128a6565b8015611d3d57503360009081526006602052604090205460ff16155b15611d4a57611d4a611e8c565b600084611d575786611d61565b611d61898861292c565b9050611d6e898983612637565b8315611deb577fe6f814da7244d1ae6c61b54b5684858ba39cad7b9a91884be10060664987d75483838987611da1610e2a565b6040805173ffffffffffffffffffffffffffffffffffffffff968716815295909416602086015292840191909152606083015260808201524260a082015260c00160405180910390a15b50600198975050505050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052611e87908490612969565b505050565b600580547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055306000908152602081905260408120549050602a54811115612516576000601954601154611efb9190613211565b90506000601a54601254611f0f9190613211565b90506000601b54601354611f239190613211565b90506000601c54601454611f379190613211565b90506000601d54601554611f4b9190613211565b90506000601e54601654611f5f9190613211565b90506000601f54601754611f739190613211565b90506000602054601854611f879190613211565b9050600081611f968a8c613289565b611fa091906132a0565b9050600082611faf8a8d613289565b611fb991906132a0565b9050600083611fc88a8e613289565b611fd291906132a0565b9050600084611fe18a8f613289565b611feb91906132a0565b9050600085898f611ffc9190613289565b61200691906132a0565b90508d6000876120168b84613289565b61202091906132a0565b905060008861202f8b85613289565b61203991906132a0565b60225490915061206190309073ffffffffffffffffffffffffffffffffffffffff1688612637565b60215461208690309073ffffffffffffffffffffffffffffffffffffffff1684612637565b6120903082612a75565b600061209d6002896132a0565b9050600085876120ad8c85613211565b6120b79190613211565b6120c19190613211565b604080516002808252606082018352929350600092909160208301908036833701905050905030816000815181106120fb576120fb6132db565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000082af49447d8a07e3bd95bd0d56f35241523fbab181600181518110612169576121696132db565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526040517f791ac94700000000000000000000000000000000000000000000000000000000815230918231917f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b479975069091169063791ac947906121f990879060009088908890429060040161330a565b600060405180830381600087803b15801561221357600080fd5b505af1158015612227573d6000803e3d6000fd5b505050506000818373ffffffffffffffffffffffffffffffffffffffff16316122509190613224565b90508d6000866122608484613289565b61226a91906132a0565b90508c60008861227a8684613289565b61228491906132a0565b90508d60008a6122948884613289565b61229e91906132a0565b60235460405191925073ffffffffffffffffffffffffffffffffffffffff16908690600081818185875af1925050503d80600081146122f9576040519150601f19603f3d011682016040523d82523d6000602084013e6122fe565b606091505b505060255460405173ffffffffffffffffffffffffffffffffffffffff90911691508490600081818185875af1925050503d806000811461235b576040519150601f19603f3d011682016040523d82523d6000602084013e612360565b606091505b505060245460405173ffffffffffffffffffffffffffffffffffffffff90911691508290600081818185875af1925050503d80600081146123bd576040519150601f19603f3d011682016040523d82523d6000602084013e6123c2565b606091505b50506040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820152602481018e905260006044820181905260648201819052608482018190524260a48301528e925073ffffffffffffffffffffffffffffffffffffffff8c811631927f0000000000000000000000001b02da8cb0d097eb8d57a175b88c7d8b479975069091169063f305d71990849060c40160606040518083038185885af115801561247f573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906124a49190613395565b604080518c8152602081018b90528082018990526060810187905242608082015290519194507fc20fef046873ad0c4038f9a82bc41b1ae19370c40e6a6c9584298f0aeca30438935081900360a0019150a1505050505050505050505050505050505050505050505050505050505050505b50600580547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff169055565b6000610e238373ffffffffffffffffffffffffffffffffffffffff8416612c39565b6000610e238383612d2c565b6000610e238373ffffffffffffffffffffffffffffffffffffffff8416612d56565b73ffffffffffffffffffffffffffffffffffffffff811660009081526001830160205260408120541515610e23565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff83166126da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff821661277d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611aa6565b600554600090760100000000000000000000000000000000000000000000900460ff161580156128f0575060055474010000000000000000000000000000000000000000900460ff165b80156128fd575060265415155b8015612916575030600090815260208190526040812054115b8015610cdd5750612926336116c9565b15905090565b600080601054600f54846129409190613289565b61294a91906132a0565b9050612957843083612637565b6129618184613224565b949350505050565b60006129cb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612da59092919063ffffffff16565b805190915015611e8757808060200190518101906129e99190613250565b611e87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff8216612b18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015612bce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610cbe565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60008181526001830160205260408120548015612d22576000612c5d600183613224565b8554909150600090612c7190600190613224565b9050818114612cd6576000866000018281548110612c9157612c916132db565b9060005260206000200154905080876000018481548110612cb457612cb46132db565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612ce757612ce76133c3565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610d88565b6000915050610d88565b6000826000018281548110612d4357612d436132db565b9060005260206000200154905092915050565b6000818152600183016020526040812054612d9d57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610d88565b506000610d88565b60606129618484600085856000808673ffffffffffffffffffffffffffffffffffffffff168587604051612dd9919061326d565b60006040518083038185875af1925050503d8060008114612e16576040519150601f19603f3d011682016040523d82523d6000602084013e612e1b565b606091505b5091509150612e2c87838387612e37565b979650505050505050565b60608315612ecd578251600003612ec65773ffffffffffffffffffffffffffffffffffffffff85163b612ec6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610cbe565b5081612961565b6129618383815115612ee25781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe9190612f3a565b60005b83811015612f31578181015183820152602001612f19565b50506000910152565b6020815260008251806020840152612f59816040850160208701612f16565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461131f57600080fd5b60008060408385031215612fc257600080fd5b612fcb83612f8b565b946020939093013593505050565b600080600080600080600060e0888a031215612ff457600080fd5b505085359760208701359750604087013596606081013596506080810135955060a0810135945060c0013592509050565b60008060006060848603121561303a57600080fd5b61304384612f8b565b925061305160208501612f8b565b9150604084013590509250925092565b60006020828403121561307357600080fd5b610e2382612f8b565b8015158114610f6957600080fd5b6000806040838503121561309d57600080fd5b6130a683612f8b565b915060208301356130b68161307c565b809150509250929050565b6000602082840312156130d357600080fd5b8135610e238161307c565b6000602082840312156130f057600080fd5b5035919050565b600080600080600060a0868803121561310f57600080fd5b61311886612f8b565b945061312660208701612f8b565b935061313460408701612f8b565b925061314260608701612f8b565b915061315060808701612f8b565b90509295509295909350565b6000806040838503121561316f57600080fd5b61317883612f8b565b915061318660208401612f8b565b90509250929050565b600181811c908216806131a357607f821691505b6020821081036131dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610d8857610d886131e2565b81810381811115610d8857610d886131e2565b60006020828403121561324957600080fd5b5051919050565b60006020828403121561326257600080fd5b8151610e238161307c565b6000825161327f818460208701612f16565b9190910192915050565b8082028115828204841417610d8857610d886131e2565b6000826132d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561336757845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101613335565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000806000606084860312156133aa57600080fd5b8351925060208401519150604084015190509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212208e85f27a650b38c8e8fc63930ff78a32534861a4788382e670d9ff3e5955594164736f6c63430008130033
Deployed Bytecode Sourcemap
58379:573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55121:182;;;;;;;;;;;;;:::i;:::-;;46102:30;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;46102:30:0;;;;;;;;58048:98;;;;;;;;;;;;;:::i;4188:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6538:201::-;;;;;;;;;;-1:-1:-1;6538:201:0;;;;;:::i;:::-;;:::i;:::-;;;1536:14:1;;1529:22;1511:41;;1499:2;1484:18;6538:201:0;1371:187:1;55311:621:0;;;;;;;;;;-1:-1:-1;55311:621:0;;;;;:::i;:::-;;:::i;46738:21::-;;;;;;;;;;-1:-1:-1;46738:21:0;;;;;;;;;;;2336:42:1;2324:55;;;2306:74;;2294:2;2279:18;46738:21:0;2160:226:1;46003:37:0;;;;;;;;;;;;;;;;5307:108;;;;;;;;;;-1:-1:-1;5395:12:0;;5307:108;;48679:269;;;;;;;;;;-1:-1:-1;48679:269:0;;;;;:::i;:::-;;:::i;54963:119::-;;;;;;;;;;;;;:::i;46823:29::-;;;;;;;;;;-1:-1:-1;46823:29:0;;;;;;;;48422:92;;;;;;;;;;-1:-1:-1;48422:92:0;;48505:1;3114:36:1;;3102:2;3087:18;48422:92:0;2972:184:1;8023:238:0;;;;;;;;;;-1:-1:-1;8023:238:0;;;;;:::i;:::-;;:::i;46493:31::-;;;;;;;;;;;;;;;;45651:43;;;;;;;;;;-1:-1:-1;45651:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54345:172;;;;;;;;;;-1:-1:-1;54345:172:0;;;;;:::i;:::-;;:::i;46066:29::-;;;;;;;;;;;;;;;;46567;;;;;;;;;;;;;;;;46416:31;;;;;;;;;;;;;;;;46379:30;;;;;;;;;;;;;;;;46642:33;;;;;;;;;;;;;;;;45827:22;;;;;;;;;;;;;;;;57191:119;;;;;;;;;;-1:-1:-1;57191:119:0;;;;;:::i;:::-;;:::i;46139:31::-;;;;;;;;;;;;;;;;45445:30;;;;;;;;;;-1:-1:-1;45445:30:0;;;;;;;;;;;5478:127;;;;;;;;;;-1:-1:-1;5478:127:0;;;;;:::i;:::-;5579:18;;5552:7;5579:18;;;;;;;;;;;;5478:127;46177:30;;;;;;;;;;;;;;;;54790:165;;;;;;;;;;-1:-1:-1;54790:165:0;;;;;:::i;:::-;;:::i;46792:24::-;;;;;;;;;;-1:-1:-1;46792:24:0;;;;;;;;45701:59;;;;;;;;;;-1:-1:-1;45701:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;45482:38;;;;;;;;;;-1:-1:-1;45482:38:0;;;;;;;;;;;46284:31;;;;;;;;;;;;;;;;30678:87;;;;;;;;;;-1:-1:-1;30751:6:0;;;;30678:87;;53344:68;;;;;;;;;;;;;:::i;55940:641::-;;;;;;;;;;-1:-1:-1;55940:641:0;;;;;:::i;:::-;;:::i;4407:104::-;;;;;;;;;;;;;:::i;8764:436::-;;;;;;;;;;-1:-1:-1;8764:436:0;;;;;:::i;:::-;;:::i;46214:28::-;;;;;;;;;;;;;;;;57858:182;;;;;;;;;;-1:-1:-1;57858:182:0;;;;;:::i;:::-;;:::i;48522:149::-;;;;;;;;;;-1:-1:-1;48522:149:0;;;;;:::i;:::-;;:::i;57430:115::-;;;;;;;;;;-1:-1:-1;57430:115:0;;;;;:::i;:::-;;:::i;46603:32::-;;;;;;;;;;;;;;;;46985:27;;;;;;;;;;;;;;;57318:104;;;;;;;;;;-1:-1:-1;57318:104:0;;;;;:::i;:::-;;:::i;58154:183::-;;;;;;;;;;-1:-1:-1;58154:183:0;;;;;:::i;:::-;;:::i;46249:28::-;;;;;;;;;;;;;;;;46861:25;;;;;;;;;;;;;;;;54525:257;;;;;;;;;;;;;:::i;57671:179::-;;;;;;;;;;-1:-1:-1;57671:179:0;;;;;:::i;:::-;;:::i;46936:39::-;;;;;;;;;;;;;;;46893:34;;;;;;;;;;;;;;;;56682:503;;;;;;;;;;-1:-1:-1;56682:503:0;;;;;:::i;:::-;;:::i;47233:35::-;;;;;;;;;;;;;;;;46707:24;;;;;;;;;;-1:-1:-1;46707:24:0;;;;;;;;45529:18;;;;;;;;;;-1:-1:-1;45529:18:0;;;;;;;;;;;46766:19;;;;;;;;;;-1:-1:-1;46766:19:0;;;;;;;;6067:151;;;;;;;;;;-1:-1:-1;6067:151:0;;;;;:::i;:::-;6183:18;;;;6156:7;6183:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6067:151;46531:29;;;;;;;;;;;;;;;;45856:22;;;;;;;;;;;;;;;;57553:110;;;;;;;;;;-1:-1:-1;57553:110:0;;;;;:::i;:::-;;:::i;46454:32::-;;;;;;;;;;;;;;;;31132:201;;;;;;;;;;-1:-1:-1;31132:201:0;;;;;:::i;:::-;;:::i;46322:32::-;;;;;;;;;;;;;;;;56591:85;;;;;;;;;;-1:-1:-1;56591:85:0;;;;;:::i;:::-;;:::i;55121:182::-;30564:13;:11;:13::i;:::-;55175:10:::1;::::0;:15;55167:44:::1;;;::::0;::::1;::::0;;5678:2:1;55167:44:0::1;::::0;::::1;5660:21:1::0;5717:2;5697:18;;;5690:30;5756:18;5736;;;5729:46;5792:18;;55167:44:0::1;;;;;;;;;55235:12;55222:10;:25:::0;55280:15:::1;55258:19;:37:::0;55121:182::o;58048:98::-;58096:7;58123:15;:6;:13;:15::i;:::-;58116:22;;58048:98;:::o;4188:100::-;4242:13;4275:5;4268:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4188:100;:::o;6538:201::-;6621:4;3274:10;6677:32;3274:10;6693:7;6702:6;6677:8;:32::i;:::-;6727:4;6720:11;;;6538:201;;;;;:::o;55311:621::-;30564:13;:11;:13::i;:::-;55582:8:::1;:21:::0;;;55614:10:::1;:24:::0;;;55649:10:::1;:25:::0;;;55686:10:::1;:25:::0;;;55723:8:::1;:21:::0;;;55756:8:::1;:20:::0;;;55788:11:::1;:26:::0;;;55802:12;55767:9;55735;55700:11;55663;55839:20:::1;55627:11:::0;55594:9;55839:20:::1;:::i;:::-;:34;;;;:::i;:::-;:48;;;;:::i;:::-;:60;;;;:::i;:::-;:72;;;;:::i;:::-;:85;;;;:::i;:::-;55825:11;:99:::0;-1:-1:-1;;;;;;;55311:621:0:o;48679:269::-;48785:4;3274:10;48843:40;48859:6;3274:10;48876:6;48843:15;:40::i;:::-;48901:39;48914:6;48922:9;48933:6;48901:12;:39::i;:::-;48894:46;;;48679:269;;;;;;:::o;54963:119::-;55016:7;5579:18;;;;;;;;;5395:12;;55043:31;;;;:::i;8023:238::-;3274:10;8111:4;6183:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;8111:4;;3274:10;8167:64;;3274:10;;6183:27;;8192:38;;8220:10;;8192:38;:::i;:::-;8167:8;:64::i;54345:172::-;30564:13;:11;:13::i;:::-;54463:45:::1;::::0;;;;54502:4:::1;54463:45;::::0;::::1;2306:74:1::0;54418:91:0::1;::::0;54452:10:::1;::::0;54463:30:::1;::::0;::::1;::::0;::::1;::::0;2279:18:1;;54463:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54418:33;::::0;::::1;::::0;:91;:33:::1;:91::i;:::-;54345:172:::0;:::o;57191:119::-;30564:13;:11;:13::i;:::-;57274:19:::1;::::0;;;::::1;;::::0;;;:11:::1;:19;::::0;;;;:28;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;57191:119::o;54790:165::-;30564:13;:11;:13::i;:::-;54865:25:::1;::::0;::::1;;3274:10:::0;54905:41:::1;::::0;;;;54940:4:::1;54905:41;::::0;::::1;2306:74:1::0;54905:26:0::1;::::0;::::1;::::0;::::1;::::0;2279:18:1;;54905:41:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54865:82;::::0;;::::1;::::0;;;;;;7108:42:1;7096:55;;;54865:82:0::1;::::0;::::1;7078:74:1::0;7168:18;;;7161:34;7051:18;;54865:82:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54790:165:::0;:::o;53344:68::-;30564:13;:11;:13::i;:::-;53394:10:::1;:8;:10::i;:::-;53344:68::o:0;55940:641::-;30564:13;:11;:13::i;:::-;56210:9:::1;:22:::0;;;56243:11:::1;:26:::0;;;56280:11:::1;:27:::0;;;56319:11:::1;:27:::0;;;56358:9:::1;:23:::0;;;56392:9:::1;:23:::0;;;56426:12:::1;:29:::0;;;56442:13;56405:10;56371;56334:12;56295;56481:22:::1;56257:12:::0;56222:10;56481:22:::1;:::i;:::-;:37;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;:78;;;;:::i;:::-;:92;;;;:::i;:::-;56466:12;:107:::0;-1:-1:-1;;;;;;;55940:641:0:o;4407:104::-;4463:13;4496:7;4489:14;;;;;:::i;8764:436::-;3274:10;8857:4;6183:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;8857:4;;3274:10;9004:15;8984:16;:35;;8976:85;;;;;;;7658:2:1;8976:85:0;;;7640:21:1;7697:2;7677:18;;;7670:30;7736:34;7716:18;;;7709:62;7807:7;7787:18;;;7780:35;7832:19;;8976:85:0;7456:401:1;8976:85:0;9097:60;9106:5;9113:7;9141:15;9122:16;:34;9097:8;:60::i;:::-;-1:-1:-1;9188:4:0;;8764:436;-1:-1:-1;;;;8764:436:0:o;57858:182::-;57915:4;30564:13;:11;:13::i;:::-;57940:18:::1;::::0;::::1;57932:63;;;::::0;::::1;::::0;;8064:2:1;57932:63:0::1;::::0;::::1;8046:21:1::0;;;8083:18;;;8076:30;8142:34;8122:18;;;8115:62;8194:18;;57932:63:0::1;7862:356:1::0;57932:63:0::1;58013:19;:6;58027:4:::0;58013:13:::1;:19::i;:::-;58006:26;;30588:1;57858:182:::0;;;:::o;48522:149::-;48601:4;48625:38;3274:10;48652:2;48656:6;48625:12;:38::i;57430:115::-;30564:13;:11;:13::i;:::-;57507:19:::1;:30:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;57430:115::o;57318:104::-;30564:13;:11;:13::i;:::-;57392:11:::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;57318:104::o;58154:183::-;58207:7;58262:1;58244:15;:6;:13;:15::i;:::-;:19;;;;:::i;:::-;58235:5;:28;;58227:68;;;;;;;8425:2:1;58227:68:0;;;8407:21:1;8464:2;8444:18;;;8437:30;8503:29;8483:18;;;8476:57;8550:18;;58227:68:0;8223:351:1;58227:68:0;58313:16;:6;58323:5;58313:9;:16::i;54525:257::-;30564:13;:11;:13::i;:::-;54703:12:::1;::::0;;54587:17:::1;54703:12:::0;;;::::1;::::0;::::1;::::0;;;;54607:21:::1;::::0;54587:17;;3274:10;;54607:21;;54658:58:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54639:77;;;54735:7;54727:47;;;::::0;::::1;::::0;;9262:2:1;54727:47:0::1;::::0;::::1;9244:21:1::0;9301:2;9281:18;;;9274:30;9340:29;9320:18;;;9313:57;9387:18;;54727:47:0::1;9060:351:1::0;57671:179:0;57728:4;30564:13;:11;:13::i;:::-;57753:18:::1;::::0;::::1;57745:63;;;::::0;::::1;::::0;;8064:2:1;57745:63:0::1;::::0;::::1;8046:21:1::0;;;8083:18;;;8076:30;8142:34;8122:18;;;8115:62;8194:18;;57745:63:0::1;7862:356:1::0;57745:63:0::1;57826:16;:6;57837:4:::0;57826:10:::1;:16::i;56682:503::-:0;30564:13;:11;:13::i;:::-;56825:9:::1;:22:::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;:9:::1;56858:22:::0;;;:11:::1;:22;::::0;;;;;:29;;;;;::::1;56825:22:::0;56858:29;;::::1;::::0;;;56898:9:::1;:20:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;56929:22;;;;;;:29;;;::::1;::::0;::::1;::::0;;56969:6:::1;:16:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;56996:19;;;;;;:26;;;::::1;::::0;::::1;::::0;;57033:4:::1;:11:::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;57055:17;;;;;;:24;;;::::1;::::0;::::1;::::0;;57090:13:::1;:40:::0;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;;57143:27;;;;;:34;;;;::::1;::::0;;::::1;::::0;;56682:503::o;57553:110::-;57607:4;57631:24;:6;57647:7;57631:15;:24::i;31132:201::-;30564:13;:11;:13::i;:::-;31221:22:::1;::::0;::::1;31213:73;;;::::0;::::1;::::0;;9618:2:1;31213:73:0::1;::::0;::::1;9600:21:1::0;9657:2;9637:18;;;9630:30;9696:34;9676:18;;;9669:62;9767:8;9747:18;;;9740:36;9793:19;;31213:73:0::1;9416:402:1::0;31213:73:0::1;31297:28;31316:8;31297:18;:28::i;56591:85::-:0;30564:13;:11;:13::i;:::-;56647:3:::1;:10:::0;56591:85::o;30843:132::-;30751:6;;30907:23;30751:6;3274:10;30907:23;30899:68;;;;;;;10025:2:1;30899:68:0;;;10007:21:1;;;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;10155:18;;30899:68:0;9823:356:1;39692:117:0;39755:7;39782:19;39790:3;34992:18;;34909:109;12791:380;12927:19;;;12919:68;;;;;;;10386:2:1;12919:68:0;;;10368:21:1;10425:2;10405:18;;;10398:30;10464:34;10444:18;;;10437:62;10535:6;10515:18;;;10508:34;10559:19;;12919:68:0;10184:400:1;12919:68:0;13006:21;;;12998:68;;;;;;;10791:2:1;12998:68:0;;;10773:21:1;10830:2;10810:18;;;10803:30;10869:34;10849:18;;;10842:62;10940:4;10920:18;;;10913:32;10962:19;;12998:68:0;10589:398:1;12998:68:0;13079:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13131:32;;160:25:1;;;13131:32:0;;133:18:1;13131:32:0;;;;;;;12791:380;;;:::o;13462:453::-;6183:18;;;;13597:24;6183:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;13684:17;13664:37;;13660:248;;13746:6;13726:16;:26;;13718:68;;;;;;;11194:2:1;13718:68:0;;;11176:21:1;11233:2;11213:18;;;11206:30;11272:31;11252:18;;;11245:59;11321:18;;13718:68:0;10992:353:1;13718:68:0;13830:51;13839:5;13846:7;13874:6;13855:16;:25;13830:8;:51::i;:::-;13586:329;13462:453;;;:::o;48956:1304::-;49068:6;;49047:4;;49068:6;;;;;49064:101;;;49091:36;49101:6;49109:9;49120:6;49091:9;:36::i;:::-;-1:-1:-1;49149:4:0;49142:11;;49064:101;49180:35;;;;;;;:27;:35;;;;;;;;49175:112;;53487:10;;49232:43;;;;;;;11552:2:1;49232:43:0;;;11534:21:1;11591:2;11571:18;;;11564:30;11630:22;11610:18;;;11603:50;11670:18;;49232:43:0;11350:344:1;49232:43:0;49320:19;;;49297:18;49320:19;;;:11;:19;;;;;;;;49319:20;:47;;;;-1:-1:-1;49344:22:0;;;;;;;:11;:22;;;;;;;;49343:23;49319:47;49318:63;;;;-1:-1:-1;53487:10:0;;:15;;49371:10;49297:84;-1:-1:-1;49392:9:0;49432:6;49465:9;49510:14;49432:6;49510;:14::i;:::-;49506:351;;;49541:9;53565:8;;53557:5;:16;;;-1:-1:-1;53584:18:0;53623:10;;53613:7;:20;53654:10;;53644:7;:20;53684:8;;53676:5;:16;53712:8;;53704:5;:16;53743:11;;53732:8;:22;53777:11;;53766:8;:22;53518:278;49541:9;-1:-1:-1;;49654:13:0;;:43;;;;;:13;7096:55:1;;;49654:43:0;;;7078:74:1;7168:18;;;7161:34;;;49572:1:0;;-1:-1:-1;49596:9:0;;49628:6;;49654:13;;;:24;;7051:18:1;;49654:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49506:351;;;49724:17;49731:9;49724:6;:17::i;:::-;49720:137;;;49758:10;53852:9;;53844:5;:17;53881:11;;53872:7;:20;53913:11;;53903:7;:21;53945:11;;53935:7;:21;53975:9;;53967:5;:17;54003:9;;-1:-1:-1;53995:17:0;54034:12;;-1:-1:-1;54023:23:0;54068:12;;-1:-1:-1;54057:23:0;53804:284;49758:10;49790:1;49783:8;;49720:137;;;49840:5;49824:21;;49720:137;49873:16;:14;:16::i;:::-;:46;;;;-1:-1:-1;3274:10:0;49894:25;;;;:11;:25;;;;;;;;49893:26;49873:46;49869:89;;;49936:10;:8;:10::i;:::-;49970:22;49995:13;:48;;50037:6;49995:48;;;50011:23;50019:6;50027;50011:7;:23::i;:::-;49970:73;;50054:44;50064:6;50072:9;50083:14;50054:9;:44::i;:::-;50115:8;;50111:120;;50145:74;50151:5;50158;50165:6;50173:4;50179:22;:20;:22::i;:::-;50145:74;;;11996:42:1;12065:15;;;12047:34;;12117:15;;;;12112:2;12097:18;;12090:43;12149:18;;;12142:34;;;;12207:2;12192:18;;12185:34;12250:3;12235:19;;12228:35;50203:15:0;12294:3:1;12279:19;;12272:35;11973:3;11958:19;50145:74:0;;;;;;;50111:120;-1:-1:-1;50248:4:0;;48956:1304;-1:-1:-1;;;;;;;;48956:1304:0:o;26318:211::-;26462:58;;;7108:42:1;7096:55;;26462:58:0;;;7078:74:1;7168:18;;;;7161:34;;;26462:58:0;;;;;;;;;;7051:18:1;;;;26462:58:0;;;;;;;;;;26485:23;26462:58;;;26435:86;;26455:5;;26435:19;:86::i;:::-;26318:211;;;:::o;50450:2878::-;45585:6;:13;;;;;;;;50545:4:::1;-1:-1:-1::0;5579:18:0;;;;;;;;;;;50507:44:::1;;50575:3;;50565:9;:13;50562:2759;;;50608:16;50636:9;;50627:8;;:18;;;;:::i;:::-;50608:37;;50660:18;50693:11;;50681:10;;:23;;;;:::i;:::-;50660:44;;50719:18;50753:11;;50740:10;;:24;;;;:::i;:::-;50719:45;;50779:18;50812:11;;50800:10;;:23;;;;:::i;:::-;50779:44;;50838:16;50866:9;;50857:8;;:18;;;;:::i;:::-;50838:37;;50891:16;50919:9;;50910:8;;:18;;;;:::i;:::-;50891:37;;50943:22;50980:12;;50968:11;;:24;;;;:::i;:::-;50943:49;;51007:19;51039:12;;51027:11;;:24;;;;:::i;:::-;51007:44:::0;-1:-1:-1;51069:16:0::1;51007:44:::0;51089:20:::1;51101:8:::0;51089:9;:20:::1;:::i;:::-;51088:39;;;;:::i;:::-;51069:58:::0;-1:-1:-1;51142:18:0::1;51189:11:::0;51164:22:::1;51176:10:::0;51164:9;:22:::1;:::i;:::-;51163:38;;;;:::i;:::-;51142:59:::0;-1:-1:-1;51216:18:0::1;51267:11:::0;51239:22:::1;51251:10:::0;51239:9;:22:::1;:::i;:::-;51238:41;;;;:::i;:::-;51216:63:::0;-1:-1:-1;51294:18:0::1;51344:11:::0;51316:22:::1;51328:10:::0;51316:9;:22:::1;:::i;:::-;51315:41;;;;:::i;:::-;51294:62;;51371:16;51417:11;51403:8;51391:9;:20;;;;:::i;:::-;51390:39;;;;:::i;:::-;51371:58:::0;-1:-1:-1;51465:9:0;51444:18:::1;51540:11:::0;51509:25:::1;51526:8:::0;51465:9;51509:25:::1;:::i;:::-;51508:44;;;;:::i;:::-;51489:63:::0;-1:-1:-1;51567:19:0::1;51627:11:::0;51589:31:::1;51606:14:::0;51589:13;:31:::1;:::i;:::-;51588:51;;;;:::i;:::-;51680:6;::::0;51567:72;;-1:-1:-1;51656:42:0::1;::::0;51674:4:::1;::::0;51680:6:::1;;51687:10:::0;51656:9:::1;:42::i;:::-;51737:9;::::0;51713:43:::1;::::0;51731:4:::1;::::0;51737:9:::1;;51747:8:::0;51713:9:::1;:43::i;:::-;51771:32;51785:4;51791:11;51771:5;:32::i;:::-;51818:9;51830:12;51841:1;51830:10:::0;:12:::1;:::i;:::-;51818:24:::0;-1:-1:-1;51857:13:0::1;51900:8:::0;51889:10;51873:14:::1;51879:8:::0;51818:24;51873:14:::1;:::i;:::-;:26;;;;:::i;:::-;:35;;;;:::i;:::-;51961:16;::::0;;51975:1:::1;51961:16:::0;;;;;::::1;::::0;;51857:51;;-1:-1:-1;51937:21:0::1;::::0;51961:16;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;51961:16:0::1;51937:40;;52010:4;51992;51997:1;51992:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;::::0;::::1;52048:4;52030;52035:1;52030:7;;;;;;;;:::i;:::-;:23;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;52190:212:::1;::::0;;;;52100:4:::1;::::0;52144:19;::::1;::::0;52190:10:::1;:61:::0;;::::1;::::0;::::1;::::0;:212:::1;::::0;52270:8;;52070:19:::1;::::0;52317:4;;52100;;52372:15:::1;::::0;52190:212:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52417:15;52455:13;52435:11;:19;;;:33;;;;:::i;:::-;52417:51:::0;-1:-1:-1;52499:8:0;52483:15:::1;52551:8:::0;52532:18:::1;52417:51:::0;52499:8;52532:18:::1;:::i;:::-;:27;;;;:::i;:::-;52522:37:::0;-1:-1:-1;52594:10:0;52574:17:::1;52652:8:::0;52631:20:::1;52644:7:::0;52594:10;52631:20:::1;:::i;:::-;:29;;;;:::i;:::-;52619:41:::0;-1:-1:-1;52693:8:0;52675:15:::1;52745:8:::0;52726:18:::1;52737:7:::0;52693:8;52726:18:::1;:::i;:::-;:27;;;;:::i;:::-;52770:4;::::0;:25:::1;::::0;52716:37;;-1:-1:-1;52770:4:0::1;;::::0;52788:2;;52770:25:::1;::::0;;;52788:2;52770:4;:25:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;52818:13:0::1;::::0;52810:43:::1;::::0;52818:13:::1;::::0;;::::1;::::0;-1:-1:-1;52844:4:0;;52810:43:::1;::::0;;;52844:4;52818:13;52810:43:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;52868:9:0::1;::::0;:28:::1;::::0;:9:::1;::::0;;::::1;::::0;-1:-1:-1;52889:2:0;;52868:28:::1;::::0;;;52889:2;52868:9;:28:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;53019:220:0::1;::::0;;;;53091:4:::1;53019:220;::::0;::::1;14564:34:1::0;14614:18;;;14607:34;;;52911:11:0::1;14657:18:1::0;;;14650:34;;;14700:18;;;14693:34;;;14743:19;;;14736:44;;;53209:15:0::1;14796:19:1::0;;;14789:35;52925:4:0;;-1:-1:-1;52961:19:0::1;::::0;;::::1;;::::0;53019:10:::1;:26:::0;;::::1;::::0;::::1;::::0;52961:19;;14475::1;;53019:220:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53259:50;::::0;;15405:25:1;;;15461:2;15446:18;;15439:34;;;15489:18;;;15482:34;;;15547:2;15532:18;;15525:34;;;53293:15:0::1;15590:3:1::0;15575:19;;15568:35;53259:50:0;;52995:244;;-1:-1:-1;53259:50:0::1;::::0;-1:-1:-1;53259:50:0;;;15392:3:1;53259:50:0;;-1:-1:-1;53259:50:0::1;50579:2742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50562:2759;-1:-1:-1::0;45621:6:0;:14;;;;;;50450:2878::o;39195:158::-;39268:4;39292:53;39300:3;39320:23;;;39292:7;:53::i;40163:158::-;40237:7;40288:22;40292:3;40304:5;40288:3;:22::i;38867:152::-;38937:4;38961:50;38966:3;38986:23;;;38961:4;:50::i;39439:167::-;39573:23;;;39519:4;34791:19;;;:12;;;:19;;;;;;:24;;39543:55;34694:129;31493:191;31586:6;;;;31603:17;;;;;;;;;;;31636:40;;31586:6;;;31603:17;31586:6;;31636:40;;31567:16;;31636:40;31556:128;31493:191;:::o;9670:840::-;9801:18;;;9793:68;;;;;;;15816:2:1;9793:68:0;;;15798:21:1;15855:2;15835:18;;;15828:30;15894:34;15874:18;;;15867:62;15965:7;15945:18;;;15938:35;15990:19;;9793:68:0;15614:401:1;9793:68:0;9880:16;;;9872:64;;;;;;;16222:2:1;9872:64:0;;;16204:21:1;16261:2;16241:18;;;16234:30;16300:34;16280:18;;;16273:62;16371:5;16351:18;;;16344:33;16394:19;;9872:64:0;16020:399:1;9872:64:0;10022:15;;;10000:19;10022:15;;;;;;;;;;;10056:21;;;;10048:72;;;;;;;16626:2:1;10048:72:0;;;16608:21:1;16665:2;16645:18;;;16638:30;16704:34;16684:18;;;16677:62;16775:8;16755:18;;;16748:36;16801:19;;10048:72:0;16424:402:1;10048:72:0;10156:15;;;;:9;:15;;;;;;;;;;;10174:20;;;10156:38;;10374:13;;;;;;;;;;:23;;;;;;10426:26;;160:25:1;;;10374:13:0;;10426:26;;133:18:1;10426:26:0;;;;;;;10465:37;26318:211;50268:174;50342:6;;50317:4;;50342:6;;;;;50341:7;:22;;;;-1:-1:-1;50352:11:0;;;;;;;50341:22;:36;;;;-1:-1:-1;53487:10:0;;:15;;50367:10;50341:68;;;;-1:-1:-1;50399:4:0;50408:1;5579:18;;;;;;;;;;;50381:28;50341:68;:93;;;;-1:-1:-1;50414:20:0;3274:10;57553:110;:::i;50414:20::-;50413:21;50334:100;;50268:174;:::o;54096:241::-;54163:7;54183:17;54225:14;;54213:8;;54204:6;:17;;;;:::i;:::-;54203:36;;;;:::i;:::-;54183:56;;54250:43;54260:6;54276:4;54283:9;54250;:43::i;:::-;54311:18;54320:9;54311:6;:18;:::i;:::-;54304:25;54096:241;-1:-1:-1;;;;54096:241:0:o;29385:716::-;29809:23;29835:69;29863:4;29835:69;;;;;;;;;;;;;;;;;29843:5;29835:27;;;;:69;;;;;:::i;:::-;29919:17;;29809:95;;-1:-1:-1;29919:21:0;29915:179;;30016:10;30005:30;;;;;;;;;;;;:::i;:::-;29997:85;;;;;;;17033:2:1;29997:85:0;;;17015:21:1;17072:2;17052:18;;;17045:30;17111:34;17091:18;;;17084:62;17182:12;17162:18;;;17155:40;17212:19;;29997:85:0;16831:406:1;11678:675:0;11762:21;;;11754:67;;;;;;;17444:2:1;11754:67:0;;;17426:21:1;17483:2;17463:18;;;17456:30;17522:34;17502:18;;;17495:62;17593:3;17573:18;;;17566:31;17614:19;;11754:67:0;17242:397:1;11754:67:0;11921:18;;;11896:22;11921:18;;;;;;;;;;;11958:24;;;;11950:71;;;;;;;17846:2:1;11950:71:0;;;17828:21:1;17885:2;17865:18;;;17858:30;17924:34;17904:18;;;17897:62;17995:4;17975:18;;;17968:32;18017:19;;11950:71:0;17644:398:1;11950:71:0;12057:18;;;:9;:18;;;;;;;;;;;12078:23;;;12057:44;;12196:12;:22;;;;;;;12247:37;160:25:1;;;12057:9:0;;:18;12247:37;;133:18:1;12247:37:0;;;;;;;26318:211;;;:::o;33188:1420::-;33254:4;33393:19;;;:12;;;:19;;;;;;33429:15;;33425:1176;;33804:21;33828:14;33841:1;33828:10;:14;:::i;:::-;33877:18;;33804:38;;-1:-1:-1;33857:17:0;;33877:22;;33898:1;;33877:22;:::i;:::-;33857:42;;33933:13;33920:9;:26;33916:405;;33967:17;33987:3;:11;;33999:9;33987:22;;;;;;;;:::i;:::-;;;;;;;;;33967:42;;34141:9;34112:3;:11;;34124:13;34112:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;34226:23;;;:12;;;:23;;;;;:36;;;33916:405;34402:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;34497:3;:12;;:19;34510:5;34497:19;;;;;;;;;;;34490:26;;;34540:4;34533:11;;;;;;;33425:1176;34584:5;34577:12;;;;;35372:120;35439:7;35466:3;:11;;35478:5;35466:18;;;;;;;;:::i;:::-;;;;;;;;;35459:25;;35372:120;;;;:::o;32598:414::-;32661:4;34791:19;;;:12;;;:19;;;;;;32678:327;;-1:-1:-1;32721:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;32904:18;;32882:19;;;:12;;;:19;;;;;;:40;;;;32937:11;;32678:327;-1:-1:-1;32988:5:0;32981:12;;20821:229;20958:12;20990:52;21012:6;21020:4;21026:1;21029:12;20958;22229;22243:23;22270:6;:11;;22289:5;22296:4;22270:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22228:73;;;;22319:69;22346:6;22354:7;22363:10;22375:12;22319:26;:69::i;:::-;22312:76;21941:455;-1:-1:-1;;;;;;;21941:455:0:o;24514:644::-;24699:12;24728:7;24724:427;;;24756:10;:17;24777:1;24756:22;24752:290;;18359:19;;;;24966:60;;;;;;;18845:2:1;24966:60:0;;;18827:21:1;18884:2;18864:18;;;18857:30;18923:31;18903:18;;;18896:59;18972:18;;24966:60:0;18643:353:1;24966:60:0;-1:-1:-1;25063:10:0;25056:17;;24724:427;25106:33;25114:10;25126:12;25861:17;;:21;25857:388;;26093:10;26087:17;26150:15;26137:10;26133:2;26129:19;26122:44;25857:388;26220:12;26213:20;;;;;;;;;;;:::i;196:250:1:-;281:1;291:113;305:6;302:1;299:13;291:113;;;381:11;;;375:18;362:11;;;355:39;327:2;320:10;291:113;;;-1:-1:-1;;438:1:1;420:16;;413:27;196:250::o;451:455::-;600:2;589:9;582:21;563:4;632:6;626:13;675:6;670:2;659:9;655:18;648:34;691:79;763:6;758:2;747:9;743:18;738:2;730:6;726:15;691:79;:::i;:::-;822:2;810:15;827:66;806:88;791:104;;;;897:2;787:113;;451:455;-1:-1:-1;;451:455:1:o;911:196::-;979:20;;1039:42;1028:54;;1018:65;;1008:93;;1097:1;1094;1087:12;1112:254;1180:6;1188;1241:2;1229:9;1220:7;1216:23;1212:32;1209:52;;;1257:1;1254;1247:12;1209:52;1280:29;1299:9;1280:29;:::i;:::-;1270:39;1356:2;1341:18;;;;1328:32;;-1:-1:-1;;;1112:254:1:o;1563:592::-;1676:6;1684;1692;1700;1708;1716;1724;1777:3;1765:9;1756:7;1752:23;1748:33;1745:53;;;1794:1;1791;1784:12;1745:53;-1:-1:-1;;1817:23:1;;;1887:2;1872:18;;1859:32;;-1:-1:-1;1938:2:1;1923:18;;1910:32;;1989:2;1974:18;;1961:32;;-1:-1:-1;2040:3:1;2025:19;;2012:33;;-1:-1:-1;2092:3:1;2077:19;;2064:33;;-1:-1:-1;2144:3:1;2129:19;2116:33;;-1:-1:-1;1563:592:1;-1:-1:-1;1563:592:1:o;2391:328::-;2468:6;2476;2484;2537:2;2525:9;2516:7;2512:23;2508:32;2505:52;;;2553:1;2550;2543:12;2505:52;2576:29;2595:9;2576:29;:::i;:::-;2566:39;;2624:38;2658:2;2647:9;2643:18;2624:38;:::i;:::-;2614:48;;2709:2;2698:9;2694:18;2681:32;2671:42;;2391:328;;;;;:::o;3161:186::-;3220:6;3273:2;3261:9;3252:7;3248:23;3244:32;3241:52;;;3289:1;3286;3279:12;3241:52;3312:29;3331:9;3312:29;:::i;3352:118::-;3438:5;3431:13;3424:21;3417:5;3414:32;3404:60;;3460:1;3457;3450:12;3475:315;3540:6;3548;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3640:29;3659:9;3640:29;:::i;:::-;3630:39;;3719:2;3708:9;3704:18;3691:32;3732:28;3754:5;3732:28;:::i;:::-;3779:5;3769:15;;;3475:315;;;;;:::o;3795:241::-;3851:6;3904:2;3892:9;3883:7;3879:23;3875:32;3872:52;;;3920:1;3917;3910:12;3872:52;3959:9;3946:23;3978:28;4000:5;3978:28;:::i;4286:180::-;4345:6;4398:2;4386:9;4377:7;4373:23;4369:32;4366:52;;;4414:1;4411;4404:12;4366:52;-1:-1:-1;4437:23:1;;4286:180;-1:-1:-1;4286:180:1:o;4722:484::-;4817:6;4825;4833;4841;4849;4902:3;4890:9;4881:7;4877:23;4873:33;4870:53;;;4919:1;4916;4909:12;4870:53;4942:29;4961:9;4942:29;:::i;:::-;4932:39;;4990:38;5024:2;5013:9;5009:18;4990:38;:::i;:::-;4980:48;;5047:38;5081:2;5070:9;5066:18;5047:38;:::i;:::-;5037:48;;5104:38;5138:2;5127:9;5123:18;5104:38;:::i;:::-;5094:48;;5161:39;5195:3;5184:9;5180:19;5161:39;:::i;:::-;5151:49;;4722:484;;;;;;;;:::o;5211:260::-;5279:6;5287;5340:2;5328:9;5319:7;5315:23;5311:32;5308:52;;;5356:1;5353;5346:12;5308:52;5379:29;5398:9;5379:29;:::i;:::-;5369:39;;5427:38;5461:2;5450:9;5446:18;5427:38;:::i;:::-;5417:48;;5211:260;;;;;:::o;5821:437::-;5900:1;5896:12;;;;5943;;;5964:61;;6018:4;6010:6;6006:17;5996:27;;5964:61;6071:2;6063:6;6060:14;6040:18;6037:38;6034:218;;6108:77;6105:1;6098:88;6209:4;6206:1;6199:15;6237:4;6234:1;6227:15;6034:218;;5821:437;;;:::o;6263:184::-;6315:77;6312:1;6305:88;6412:4;6409:1;6402:15;6436:4;6433:1;6426:15;6452:125;6517:9;;;6538:10;;;6535:36;;;6551:18;;:::i;6582:128::-;6649:9;;;6670:11;;;6667:37;;;6684:18;;:::i;6715:184::-;6785:6;6838:2;6826:9;6817:7;6813:23;6809:32;6806:52;;;6854:1;6851;6844:12;6806:52;-1:-1:-1;6877:16:1;;6715:184;-1:-1:-1;6715:184:1:o;7206:245::-;7273:6;7326:2;7314:9;7305:7;7301:23;7297:32;7294:52;;;7342:1;7339;7332:12;7294:52;7374:9;7368:16;7393:28;7415:5;7393:28;:::i;8768:287::-;8897:3;8935:6;8929:13;8951:66;9010:6;9005:3;8998:4;8990:6;8986:17;8951:66;:::i;:::-;9033:16;;;;;8768:287;-1:-1:-1;;8768:287:1:o;12318:168::-;12391:9;;;12422;;12439:15;;;12433:22;;12419:37;12409:71;;12460:18;;:::i;12491:274::-;12531:1;12557;12547:189;;12592:77;12589:1;12582:88;12693:4;12690:1;12683:15;12721:4;12718:1;12711:15;12547:189;-1:-1:-1;12750:9:1;;12491:274::o;12770:184::-;12822:77;12819:1;12812:88;12919:4;12916:1;12909:15;12943:4;12940:1;12933:15;12959:1026;13221:4;13269:3;13258:9;13254:19;13300:6;13289:9;13282:25;13326:2;13364:6;13359:2;13348:9;13344:18;13337:34;13407:3;13402:2;13391:9;13387:18;13380:31;13431:6;13466;13460:13;13497:6;13489;13482:22;13535:3;13524:9;13520:19;13513:26;;13574:2;13566:6;13562:15;13548:29;;13595:1;13605:218;13619:6;13616:1;13613:13;13605:218;;;13684:13;;13699:42;13680:62;13668:75;;13798:15;;;;13763:12;;;;13641:1;13634:9;13605:218;;;-1:-1:-1;;13891:42:1;13879:55;;;;13874:2;13859:18;;13852:83;-1:-1:-1;;;13966:3:1;13951:19;13944:35;13840:3;12959:1026;-1:-1:-1;;;12959:1026:1:o;14835:306::-;14923:6;14931;14939;14992:2;14980:9;14971:7;14967:23;14963:32;14960:52;;;15008:1;15005;14998:12;14960:52;15037:9;15031:16;15021:26;;15087:2;15076:9;15072:18;15066:25;15056:35;;15131:2;15120:9;15116:18;15110:25;15100:35;;14835:306;;;;;:::o;18047:184::-;18099:77;18096:1;18089:88;18196:4;18193:1;18186:15;18220:4;18217:1;18210:15
Swarm Source
ipfs://8e85f27a650b38c8e8fc63930ff78a32534861a4788382e670d9ff3e59555941
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.
Add Token to MetaMask (Web3)