ERC-20
Overview
Max Total Supply
100,000,000 CORE
Holders
862
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$22,741.00
Circulating Supply Market Cap
$22,741.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 COREValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CoreConnectToken
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.26; // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 value ) external returns (bool); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance( address sender, uint256 balance, uint256 needed ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance( address spender, uint256 allowance, uint256 needed ); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance( address sender, uint256 balance, uint256 needed, uint256 tokenId ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer( address from, address to, uint256 value ) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update( address from, address to, uint256 value ) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve( address owner, address spender, uint256 value ) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract CoreConnectToken is Ownable, ERC20 { IUniswapV2Router public immutable uniswapV2Router; address public constant ZERO_ADDRESS = address(0); address public constant DEAD_ADDRESS = address(0xdEaD); address public immutable uniswapV2Pair; address public operationsWallet; address public developmentWallet; bool public isLimitsEnabled; bool public isCooldownEnabled; bool public isTaxEnabled; bool private inSwapBack; bool public isLaunched; uint256 public launchBlock; uint256 public launchTime; uint256 private lastSwapBackExecutionBlock; uint256 public constant MAX_FEE = 25; uint256 public maxBuy; uint256 public maxSell; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public buyFee; uint256 public sellFee; uint256 public transferFee; mapping(address => bool) public isBot; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedFromLimits; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event Launch(); event SetOperationsWallet(address newWallet, address oldWallet); event SetDevelopmentWallet(address newWallet, address oldWallet); event SetLimitsEnabled(bool status); event SetCooldownEnabled(bool status); event SetTaxesEnabled(bool status); event SetMaxBuy(uint256 amount); event SetMaxSell(uint256 amount); event SetMaxWallet(uint256 amount); event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue); event SetBuyFees(uint256 newValue, uint256 oldValue); event SetSellFees(uint256 newValue, uint256 oldValue); event SetTransferFees(uint256 newValue, uint256 oldValue); event ExcludeFromFees(address account, bool isExcluded); event ExcludeFromLimits(address account, bool isExcluded); event SetBots(address account, bool isExcluded); event SetAutomatedMarketMakerPair(address pair, bool value); event WithdrawStuckTokens(address token, uint256 amount); error AlreadyLaunched(); error AddressZero(); error AmountTooLow(); error AmountTooHigh(); error FeeTooHigh(); error AMMAlreadySet(); error NoNativeTokens(); error NoTokens(); error FailedToWithdrawNativeTokens(); error BotDetected(); error TransferDelay(); error MaxBuyAmountExceed(); error MaxSellAmountExceed(); error MaxWalletAmountExceed(); error NotLaunched(); modifier lockSwapBack() { inSwapBack = true; _; inSwapBack = false; } constructor() Ownable(msg.sender) ERC20("CoreConnect", "CORE") { address sender = msg.sender; _mint(sender, 100_000_000 ether); uint256 totalSupply = totalSupply(); operationsWallet = 0xFC1A1D3637E6B89a074D80123f418088A2747cB6; developmentWallet = 0xF7E426c1f3529CC5dE347458E8D198D06c54fC3E; maxBuy = (totalSupply * 13) / 1000; maxSell = (totalSupply * 13) / 1000; maxWallet = (totalSupply * 13) / 1000; swapTokensAtAmount = (totalSupply * 5) / 10000; isLimitsEnabled = true; isCooldownEnabled = true; isTaxEnabled = true; buyFee = 25; sellFee = 35; transferFee = 50; uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setAutomatedMarketMakerPair(uniswapV2Pair, true); _approve(address(this), address(uniswapV2Router), type(uint256).max); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdead), true); _excludeFromFees(sender, true); _excludeFromFees(operationsWallet, true); _excludeFromFees(developmentWallet, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0xdead), true); _excludeFromLimits(sender, true); _excludeFromLimits(operationsWallet, true); _excludeFromLimits(developmentWallet, true); } receive() external payable {} fallback() external payable {} function _transferOwnership(address newOwner) internal override { address oldOwner = owner(); if (oldOwner != address(0)) { _excludeFromFees(oldOwner, false); _excludeFromLimits(oldOwner, false); } _excludeFromFees(newOwner, true); _excludeFromLimits(newOwner, true); super._transferOwnership(newOwner); } function launch() external onlyOwner { require(!isLaunched, AlreadyLaunched()); isLaunched = true; launchBlock = block.number; launchTime = block.timestamp; emit Launch(); } function setOperationsWallet(address _operationsWallet) external onlyOwner { require(_operationsWallet != address(0), AddressZero()); address oldWallet = operationsWallet; operationsWallet = _operationsWallet; emit SetOperationsWallet(operationsWallet, oldWallet); } function setDevelopmentWallet(address _developmentWallet) external onlyOwner { require(_developmentWallet != address(0), AddressZero()); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit SetDevelopmentWallet(developmentWallet, oldWallet); } function setLimitsEnabled(bool value) external onlyOwner { isLimitsEnabled = value; emit SetLimitsEnabled(value); } function setCooldownEnabled(bool value) external onlyOwner { isCooldownEnabled = value; emit SetCooldownEnabled(value); } function setTaxesEnabled(bool value) external onlyOwner { isTaxEnabled = value; emit SetTaxesEnabled(value); } function setMaxBuy(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxBuy = amount; emit SetMaxBuy(maxBuy); } function setMaxSell(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxSell = amount; emit SetMaxSell(maxSell); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 3) / 1000), AmountTooLow()); maxWallet = amount; emit SetMaxWallet(maxWallet); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { uint256 _totalSupply = totalSupply(); require(amount >= (_totalSupply * 1) / 1000000, AmountTooLow()); require(amount <= (_totalSupply * 5) / 1000, AmountTooHigh()); uint256 oldValue = swapTokensAtAmount; swapTokensAtAmount = amount; emit SetSwapTokensAtAmount(amount, oldValue); } function setBuyFees(uint256 _buyFee) external onlyOwner { require(_buyFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = buyFee; buyFee = _buyFee; emit SetBuyFees(_buyFee, oldValue); } function setSellFees(uint256 _sellFee) external onlyOwner { require(_sellFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = sellFee; sellFee = _sellFee; emit SetSellFees(_sellFee, oldValue); } function setTransferFees(uint256 _transferFee) external onlyOwner { require(_transferFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = transferFee; transferFee = _transferFee; emit SetTransferFees(_transferFee, oldValue); } function excludeFromFees(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromFees(accounts[i], value); } } function excludeFromLimits(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setBots(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (!automatedMarketMakerPairs[accounts[i]]) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) && (accounts[i] != ZERO_ADDRESS) && (!isExcludedFromFees[accounts[i]] && !isExcludedFromLimits[accounts[i]]) ) _setBots(accounts[i], value); } } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(!automatedMarketMakerPairs[pair], AMMAlreadySet()); _setAutomatedMarketMakerPair(pair, value); } function withdrawStuckTokens(address _token) external onlyOwner { address sender = msg.sender; uint256 amount; if (_token == ZERO_ADDRESS) { bool success; amount = address(this).balance; require(amount > 0, NoNativeTokens()); (success, ) = address(sender).call{value: amount}(""); require(success, FailedToWithdrawNativeTokens()); } else { amount = IERC20(_token).balanceOf(address(this)); require(amount > 0, NoTokens()); IERC20(_token).transfer(msg.sender, amount); } emit WithdrawStuckTokens(_token, amount); } function _update( address from, address to, uint256 amount ) internal virtual override { address sender = msg.sender; address origin = tx.origin; require(!isBot[from], BotDetected()); require(sender == from || !isBot[sender], BotDetected()); require( origin == from || origin == sender || !isBot[origin], BotDetected() ); require( isLaunched || isExcludedFromLimits[from] || isExcludedFromLimits[to], NotLaunched() ); bool limits = isLimitsEnabled && !inSwapBack && !(isExcludedFromLimits[from] || isExcludedFromLimits[to]); if (limits) { if ( from != owner() && to != owner() && to != ZERO_ADDRESS && to != DEAD_ADDRESS ) { if (isCooldownEnabled) { if (to != address(uniswapV2Router) && to != uniswapV2Pair) { require( _holderLastTransferTimestamp[origin] < block.number - 3 && _holderLastTransferTimestamp[to] < block.number - 3, TransferDelay() ); _holderLastTransferTimestamp[origin] = block.number; _holderLastTransferTimestamp[to] = block.number; } } if ( automatedMarketMakerPairs[from] && !isExcludedFromLimits[to] ) { require(amount <= maxBuy, MaxBuyAmountExceed()); require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } else if ( automatedMarketMakerPairs[to] && !isExcludedFromLimits[from] ) { require(amount <= maxSell, MaxSellAmountExceed()); } else if (!isExcludedFromLimits[to]) { require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } } } bool takeFee = isTaxEnabled && !inSwapBack && !(isExcludedFromFees[from] || isExcludedFromFees[to]); if (takeFee) { uint256 fees = 0; if (automatedMarketMakerPairs[to] && sellFee > 0) { fees = (amount * sellFee) / 100; } else if (automatedMarketMakerPairs[from] && buyFee > 0) { fees = (amount * buyFee) / 100; } else if ( !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from] && transferFee > 0 ) { fees = (amount * transferFee) / 100; } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } uint256 balance = balanceOf(address(this)); bool shouldSwap = balance >= swapTokensAtAmount; if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) { if (block.number > lastSwapBackExecutionBlock) { _swapBack(balance); lastSwapBackExecutionBlock = block.number; } } super._update(from, to, amount); } function _swapBack(uint256 balance) internal virtual lockSwapBack { bool success; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 maxSwapAmount = swapTokensAtAmount * 20; if (balance > maxSwapAmount) { balance = maxSwapAmount; } uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balance, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; uint256 ethForOperations = ethBalance / 2; uint256 ethForDevelopment = ethBalance - ethForOperations; (success, ) = address(operationsWallet).call{value: ethForOperations}( "" ); (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); } function _excludeFromFees(address account, bool value) internal virtual { isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function _excludeFromLimits(address account, bool value) internal virtual { isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } function _setBots(address account, bool value) internal virtual { isBot[account] = value; emit SetBots(account, value); } function _setAutomatedMarketMakerPair(address pair, bool value) internal virtual { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferDelay","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","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":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040523461081b575f60409081519161001a8184610e90565b600b83526a10dbdc9950dbdb9b9958dd60aa1b602084015280519161003f8284610e90565b6004835263434f524560e01b60208401523315610e7d575f546001600160a01b03168281610e1a575b505061007333610ef7565b61007c33610f35565b5f8054336001600160a01b0319821681178355916001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a383516001600160401b038111610d2b57600454600181811c91168015610e10575b6020821014610d0d57601f8111610dad575b50602094601f8211600114610d4a579481929394955f92610d3f575b50508160011b915f199060031b1c1916176004555b82516001600160401b038111610d2b57600554600181811c91168015610d21575b6020821014610d0d57601f8111610cc7575b506020601f8211600114610c6457819293945f92610c59575b50508160011b915f199060031b1c1916176005555b6a52b7d2dcc80cd2e40000005f8052601260205260ff835f205416610c2b57335f52601260205260ff835f205416610c2b5732158015610c50575b8015610c3a575b15610c2b5760075460ff8160c01c168015610c16575b8015610c01575b15610bf25760ff8160a01c1680610be4575b80610bb2575b6109c0575b5060075460ff8160b01c1690816109b1575b508061097f575b80610898575b305f526001602052835f2054600e549180610882575b80610878575b610642575b505061024d9033610f95565b600354600680546001600160a01b03191673fc1a1d3637e6b89a074d80123f418088a2747cb6179055600754908015600d808302908382041482171561062e576103e8900480600b5580600c55600d5560058202918204600514171561061a576127109004600e556001600160b81b03191676010101f7e426c1f3529cc5de347458e8d198d06c54fc3e176007556019600f5560236010556032601155737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052825163c45a015560e01b815290602090829060049082905afa9081156105ca5782916105fb575b5060805183516315ab88c960e31b815290602090829060049082906001600160a01b03165afa9081156105f157916044602092859485916105d4575b5086516364e329cb60e11b81523060048201526001600160a01b0391821660248201529485938492165af19081156105ca577fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab918491849161059b575b508060a05260018060a01b03168084526015602052818420600160ff19825416179055815190815260016020820152a16080516001600160a01b03163015610587578015610573575f8051602061333383398151915291839130825260026020528282208183526020528282205f19905582515f1981527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203092a361046a30610ef7565b61dead81526013602052818120600160ff198254161790555f8051602061331383398151915282805161dead815260016020820152a16104a933610ef7565b6006546104be906001600160a01b0316610ef7565b6007546104d3906001600160a01b0316610ef7565b6104dc30610f35565b61dead81526014602052818120600160ff198254161790558151905061dead815260016020820152a161050e33610f35565b600654610523906001600160a01b0316610f35565b600754610538906001600160a01b0316610f35565b516122cd90816110468239608051818181610c30015281816114b901528181611abd0152611f1e015260a05181818161125a0152611fc60152f35b634a1406b160e11b82526004829052602482fd5b63e602df0560e01b82526004829052602482fd5b6105bd915060203d6020116105c3575b6105b58183610e90565b810190610ed8565b5f6103c4565b503d6105ab565b83513d84823e3d90fd5b6105eb9150843d86116105c3576105b58183610e90565b5f610367565b84513d85823e3d90fd5b610614915060203d6020116105c3576105b58183610e90565b5f61032b565b634e487b7160e01b83526011600452602483fd5b634e487b7160e01b85526011600452602485fd5b600a54431115610241576007805460ff60b81b1916600160b81b179055845191819061066f606085610e90565b600284526020840191604036843784511561083b5730835260805188516315ab88c960e31b815290602090829060049082906001600160a01b03165afa90811561086e575f9161084f575b5085516001101561083b576001600160a01b0316858901526014828102928015908404909114171561082757811061081f575b506080516001600160a01b031691823b1561081b579290865193849263791ac94760e01b845260a484019160048501525f602485015260a060448501525180915260c4830191905f5b8181106107f95750505091815f81819530606483015242608483015203925af180156107ef576107da575b50478060011c8082039182116107c65783808061024d959481808080809860018060a01b03600654165af150610795611007565b506007546001600160a01b03165af1506107ad611007565b506007805460ff60b81b1916905543600a55905f610241565b634e487b7160e01b84526011600452602484fd5b6107e79192505f90610e90565b5f905f610761565b84513d5f823e3d90fd5b82516001600160a01b0316845286945060209384019390920191600101610736565b5f80fd5b91505f6106ed565b634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52603260045260245ffd5b610868915060203d6020116105c3576105b58183610e90565b5f6106ba565b89513d5f823e3d90fd5b508181101561023c565b505f8052601560205260ff855f20541615610236565b5f335f52601560205260ff855f20541680610974575b156108eb575060646108c1601054610eb3565b045b806108cf575b50610220565b91828103908111610827576108e5909230610f95565b5f6108c9565b5f8052601560205260ff855f20541680610969575b1561091957506064610913600f54610eb3565b046108c3565b335f52601560205260ff855f2054161580610953575b80610948575b156108c357506064610913601154610eb3565b506011541515610935565b505f8052601560205260ff855f2054161561092f565b50600f541515610900565b5060105415156108ae565b505f8052601360205260ff835f205416801561099c575b1561021a565b50335f52601360205260ff835f205416610996565b60ff915060b81c16155f610213565b5f546001600160a01b03168015159081610ba7575b5080610b9f575b80610b93575b156102015760a81c60ff16610af9575b5f8052601560205260ff835f20541680610ae3575b15610a5657600b548111610a4757335f526001602052610a29835f2054610f73565b600d5410610a38575b5f610201565b63d867451160e01b5f5260045ffd5b632c676b8560e21b5f5260045ffd5b335f52601560205260ff835f20541680610acd575b15610a8e57600c548111610a7f575b610a32565b6338aa438560e21b5f5260045ffd5b335f52601460205260ff835f205416610a3257335f526001602052610ab5835f2054610f73565b600d541015610a7a5763d867451160e01b5f5260045ffd5b505f8052601460205260ff835f20541615610a6b565b50335f52601460205260ff835f20541615610a07565b6080516001600160a01b031633141580610b7e575b156109f257325f526016602052825f20546002194301904382116108275781119081610b69575b5015610b5a57325f52601660205243835f2055335f52601660205243835f20556109f2565b630301a6ed60e61b5f5260045ffd5b9050335f526016602052835f2054105f610b35565b5060a0516001600160a01b0316331415610b0e565b5061dead3314156109e2565b5060016109dc565b90503314155f6109d5565b505f8052601460205260ff845f2054168015610bcf575b156101fc565b50335f52601460205260ff845f205416610bc9565b5060ff8160b81c16156101f6565b638dda39df60e01b5f5260045ffd5b50335f52601460205260ff845f2054166101e4565b505f8052601460205260ff845f2054166101dd565b6339a9b03560e21b5f5260045ffd5b50325f52601260205260ff835f205416156101c7565b503332146101c0565b015190505f80610170565b601f1982169060055f52805f20915f5b818110610caf57509583600195969710610c97575b505050811b01600555610185565b01515f1960f88460031b161c191690555f8080610c89565b9192602060018192868b015181550194019201610c74565b60055f5260205f20601f830160051c81019160208410610d03575b601f0160051c01905b818110610cf85750610157565b5f8155600101610ceb565b9091508190610ce2565b634e487b7160e01b5f52602260045260245ffd5b90607f1690610145565b634e487b7160e01b5f52604160045260245ffd5b015190505f8061010f565b601f1982169560045f52805f20915f5b888110610d9557508360019596979810610d7d575b505050811b01600455610124565b01515f1960f88460031b161c191690555f8080610d6f565b91926020600181928685015181550194019201610d5a565b60045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f830160051c81019160208410610e06575b601f0160051c01905b818110610dfb57506100f3565b5f8155600101610dee565b9091508190610de5565b90607f16906100e1565b815f80516020613333833981519152925f526013602052815f2060ff1981541690555f805160206133138339815191528280518381525f6020820152a1805f526014602052815f2060ff19815416905581519081525f6020820152a15f82610068565b631e4fbdf760e01b5f525f60045260245ffd5b601f909101601f19168101906001600160401b03821190821017610d2b57604052565b90816a52b7d2dcc80cd2e400000002916a52b7d2dcc80cd2e400000083040361082757565b9081602091031261081b57516001600160a01b038116810361081b5790565b60405f805160206133138339815191529160018060a01b0316805f526013602052815f20600160ff19825416179055815190815260016020820152a1565b60405f805160206133338339815191529160018060a01b0316805f526014602052815f20600160ff19825416179055815190815260016020820152a1565b6a52b7d2dcc80cd2e40000000190816a52b7d2dcc80cd2e40000001161082757565b60035490828201809211610827576003919091556001600160a01b0316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060209084610ff15780600354036003555b604051908152a3565b8484526001825260408420818154019055610fe8565b3d15611040573d906001600160401b038211610d2b5760405191611035601f8201601f191660200184610e90565b82523d5f602084013e565b60609056fe60806040526004361015610018575b361561001657005b005b5f3560e01c806301339c21146116c357806306fdde0314611608578063095ea7b314611586578063106a5a8f146114e85780631694505e146114a457806318160ddd1461148757806323b872dd146113a85780632b14ca561461138b578063307aebc914611366578063313ce5671461134b5780633bbac5791461130e57806341aea9de146112a6578063470624021461128957806349bd5a5e146112455780634e6fd6c4146112295780634fbee193146111ec578063538ba4f9146111d25780635932ead11461116a57806359512ab0146111025780635cce86cd146110c55780635d0044ca146110575780636ca541e51461103257806370a0823114610ffa57806370db69d614610fdd578063715018a614610f5057806372ac248614610ec6578063790ca41314610ea95780638da5cb5b14610e8257806395927c2514610e2657806395d89b4114610d225780639a7a23d614610c5f5780639c0db5f314610a9e578063a9059cbb14610a6d578063acb2ad6f14610a50578063ad29ffde146109ad578063afa4f3b214610911578063b62496f5146108d4578063b8eb3546146108b7578063bc063e1a1461089c578063c04a541414610874578063cb963728146106af578063d00efb2f14610692578063d26ed3e314610636578063d5759ba314610611578063dcf7aef3146105a6578063dd62ed3e14610556578063e2f4560514610539578063e6c1909b14610514578063ee5ecc891461047a578063ef998cf01461040c578063f2fde38b14610348578063f53bc835146102b7578063f8b45b051461029a5763fd72e22a0361000e5734610296575f366003190112610296576006546040516001600160a01b039091168152602090f35b5f80fd5b34610296575f366003190112610296576020600d54604051908152f35b34610296576020366003190112610296576004356102d36118bc565b6003548060011b9080820460021490151715610334576103e890048110610325576020817f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f92600b55604051908152a1005b631fbaba3560e01b5f5260045ffd5b634e487b7160e01b5f52601160045260245ffd5b3461029657602036600319011261029657610361611760565b6103696118bc565b6001600160a01b0381169081156103f9575f5461039f91906001600160a01b0316806103e1575b5061039a8161214b565b61192f565b5f80546001600160a01b03198116831782556001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b806103ee6103f3926120fe565b6118e2565b83610390565b631e4fbdf760e01b5f525f60045260245ffd5b34610296576020366003190112610296576004356104286118bc565b6003548060011b9080820460021490151715610334576103e890048110610325576020817f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b792600c55604051908152a1005b3461029657602036600319011261029657610493611760565b61049b6118bc565b6001600160a01b0316801561050557600680546001600160a01b031981168317909155604080516001600160a01b0393841681529290911660208301527fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059190819081015b0390a1005b639fabe1c160e01b5f5260045ffd5b34610296575f36600319011261029657602060ff60075460b01c166040519015158152f35b34610296575f366003190112610296576020600e54604051908152f35b346102965760403660031901126102965761056f611760565b610577611776565b6001600160a01b039182165f908152600260209081526040808320949093168252928352819020549051908152f35b34610296576020366003190112610296576004356105c26118bc565b601981116106025760407f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d91600f5481600f5582519182526020820152a1005b63cd4e616760e01b5f5260045ffd5b34610296575f36600319011261029657602060ff60075460a01c166040519015158152f35b34610296576020366003190112610296576004356106526118bc565b601981116106025760407f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc25916011548160115582519182526020820152a1005b34610296575f366003190112610296576020600854604051908152f35b34610296576020366003190112610296576106c8611760565b6106d06118bc565b6001600160a01b038116806107615750478015610752575f80808084335af16106f761187d565b5015610743577f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b915b604080516001600160a01b03909216825260208201929092529081908101610500565b633398652560e11b5f5260045ffd5b634870bf9160e01b5f5260045ffd5b6040516370a0823160e01b8152306004820152602081602481855afa908115610828575f91610842575b50809181156108335760405163a9059cbb60e01b81523360048201526024810192909252602090829060449082905f905af18015610828576107f0575b507f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b91610720565b6020813d602011610820575b81610809602093836117fc565b8101031261029657518015150361029657826107c8565b3d91506107fc565b6040513d5f823e3d90fd5b63df95788360e01b5f5260045ffd5b90506020813d60201161086c575b8161085d602093836117fc565b8101031261029657518361078b565b3d9150610850565b34610296575f366003190112610296576007546040516001600160a01b039091168152602090f35b34610296575f36600319011261029657602060405160198152f35b34610296575f366003190112610296576020600c54604051908152f35b34610296576020366003190112610296576001600160a01b036108f5611760565b165f526015602052602060ff60405f2054166040519015158152f35b346102965760203660031901126102965760043561092d6118bc565b600354801581800460011481171561033457620f42408204831061032557600582029182046005141715610334576103e89004811161099e5760407f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91600e5481600e5582519182526020820152a1005b63fd7850ad60e01b5f5260045ffd5b34610296576109bb3661179b565b906109c46118bc565b5f5b8181106109cf57005b807f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df784610a07610a02600195878a611832565b611856565b848060a01b0381165f526013602052610a2f8260405f209060ff801983541691151516179055565b604080516001600160a01b039290921682529115156020820152a1016109c6565b34610296575f366003190112610296576020601154604051908152f35b3461029657604036600319011261029657610a93610a89611760565b6024359033611980565b602060405160018152f35b3461029657610aac3661179b565b9091610ab66118bc565b5f5b838110610ac157005b6001906001600160a01b03610ada610a02838887611832565b165f52601560205260ff60405f2054161580610c19575b80610bfa575b80610bdd575b80610b86575b610b0e575b01610ab8565b7ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc884610b3e610a02848988611832565b848060a01b0381165f526012602052610b668260405f209060ff801983541691151516179055565b604080516001600160a01b039290921682529115156020820152a1610b08565b50818060a01b03610b9b610a02838887611832565b165f52601360205260ff60405f205416158015610b035750818060a01b03610bc7610a02838887611832565b165f52601460205260ff60405f20541615610b03565b50818060a01b03610bf2610a02838887611832565b161515610afd565b50610c09610a02828786611832565b3090838060a01b03161415610af7565b50610c28610a02828786611832565b828060a01b037f00000000000000000000000000000000000000000000000000000000000000001690838060a01b03161415610af1565b3461029657604036600319011261029657610c78611760565b602435801515810361029657610c8c6118bc565b6001600160a01b0382165f8181526015602052604090205490929060ff16610d13577fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab925f526015602052610cf08260405f209060ff801983541691151516179055565b604080516001600160a01b03909216825291151560208201529081908101610500565b6304eb79b560e31b5f5260045ffd5b34610296575f366003190112610296576040515f6005548060011c90600181168015610e1c575b602083108114610e0857828552908115610de45750600114610d86575b610d8283610d76818503826117fc565b60405191829182611736565b0390f35b91905060055f527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0915f905b808210610dca57509091508101602001610d76610d66565b919260018160209254838588010152019101909291610db2565b60ff191660208086019190915291151560051b84019091019150610d769050610d66565b634e487b7160e01b5f52602260045260245ffd5b91607f1691610d49565b3461029657602036600319011261029657600435610e426118bc565b601981116106025760407f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b01916010548160105582519182526020820152a1005b34610296575f366003190112610296575f546040516001600160a01b039091168152602090f35b34610296575f366003190112610296576020600954604051908152f35b3461029657602036600319011261029657610edf611760565b610ee76118bc565b6001600160a01b0316801561050557600780546001600160a01b031981168317909155604080516001600160a01b0393841681529290911660208301527f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c919081908101610500565b34610296575f36600319011261029657610f686118bc565b5f546001600160a01b031680610fca575b610f825f61214b565b610f8b5f61192f565b5f80546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b806103ee610fd7926120fe565b80610f79565b34610296575f366003190112610296576020600b54604051908152f35b34610296576020366003190112610296576001600160a01b0361101b611760565b165f526001602052602060405f2054604051908152f35b34610296575f36600319011261029657602060ff60075460a81c166040519015158152f35b34610296576020366003190112610296576004356110736118bc565b600354600381029080820460031490151715610334576103e890048110610325576020817fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618692600d55604051908152a1005b34610296576020366003190112610296576001600160a01b036110e6611760565b165f526014602052602060ff60405f2054166040519015158152f35b34610296576020366003190112610296577f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b602061113e61178c565b6111466118bc565b151560075460ff60b01b8260b01b169060ff60b01b191617600755604051908152a1005b34610296576020366003190112610296577f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f60206111a661178c565b6111ae6118bc565b151560075460ff60a81b8260a81b169060ff60a81b191617600755604051908152a1005b34610296575f3660031901126102965760206040515f8152f35b34610296576020366003190112610296576001600160a01b0361120d611760565b165f526013602052602060ff60405f2054166040519015158152f35b34610296575f36600319011261029657602060405161dead8152f35b34610296575f366003190112610296576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b34610296575f366003190112610296576020600f54604051908152f35b34610296576020366003190112610296577ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78160206112e261178c565b6112ea6118bc565b151560075460ff60a01b8260a01b169060ff60a01b191617600755604051908152a1005b34610296576020366003190112610296576001600160a01b0361132f611760565b165f526012602052602060ff60405f2054166040519015158152f35b34610296575f36600319011261029657602060405160128152f35b34610296575f36600319011261029657602060ff60075460c01c166040519015158152f35b34610296575f366003190112610296576020601054604051908152f35b34610296576060366003190112610296576113c1611760565b6113c9611776565b6001600160a01b0382165f8181526002602090815260408083203384529091529020549092604435929160018101611407575b50610a939350611980565b83811061146c57841561145957331561144657610a93945f52600260205260405f2060018060a01b0333165f526020528360405f2091039055846113fc565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b34610296575f366003190112610296576020600354604051908152f35b34610296575f366003190112610296576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b34610296576114f63661179b565b906114ff6118bc565b5f5b81811061150a57005b807f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928461153d610a02600195878a611832565b848060a01b0381165f5260146020526115658260405f209060ff801983541691151516179055565b604080516001600160a01b039290921682529115156020820152a101611501565b346102965760403660031901126102965761159f611760565b602435903315611459576001600160a01b031690811561144657335f52600260205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610296575f366003190112610296576040515f6004548060011c906001811680156116b9575b602083108114610e0857828552908115610de4575060011461165b57610d8283610d76818503826117fc565b91905060045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b915f905b80821061169f57509091508101602001610d76610d66565b919260018160209254838588010152019101909291611687565b91607f169161162f565b34610296575f366003190112610296576116db6118bc565b60075460ff8160c01c166117275760ff60c01b1916600160c01b1760075543600855426009557f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e26695f80a1005b6319f4db0f60e31b5f5260045ffd5b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b038216820361029657565b602435906001600160a01b038216820361029657565b60043590811515820361029657565b9060406003198301126102965760043567ffffffffffffffff811161029657826023820112156102965780600401359267ffffffffffffffff84116102965760248460051b8301011161029657602401919060243580151581036102965790565b90601f8019910116810190811067ffffffffffffffff82111761181e57604052565b634e487b7160e01b5f52604160045260245ffd5b91908110156118425760051b0190565b634e487b7160e01b5f52603260045260245ffd5b356001600160a01b03811681036102965790565b8181029291811591840414171561033457565b3d156118b7573d9067ffffffffffffffff821161181e57604051916118ac601f8201601f1916602001846117fc565b82523d5f602084013e565b606090565b5f546001600160a01b031633036118cf57565b63118cdaa760e01b5f523360045260245ffd5b60407f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929160018060a01b0316805f526014602052815f2060ff19815416905581519081525f6020820152a1565b60407f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929160018060a01b0316805f526014602052815f20600160ff19825416179055815190815260016020820152a1565b6001600160a01b0381169291905f84156120eb576001600160a01b0383169384156120d8578094865f52601260205260ff60405f2054166120925786331480156120c1575b156120925786321480156120b8575b80156120a1575b156120925760075460ff8160c01c16801561207c575b8015612066575b156120575760ff8160a01c1680612049575b80612015575b611dd9575b506007549160ff8360b01c169283611dca575b5082611d94575b82611ca2575b5050305f52600160205260405f205490600e549681611c8a575b5080611c80575b611a69575b5050611a6793506121b6565b565b600a54431115611a5b576007805460ff60b81b1916600160b81b1790556040519581611a966060896117fc565b6002885260208801916040368437885115611842573083526040516315ab88c960e31b81527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169490602081600481895afa908115610828575f91611c3e575b508a5160011015611842576001600160a01b031660408b015260148281029280159084049091141715610334578110611c36575b50823b1561029657969060405197889263791ac94760e01b845260a484019160048501525f602485015260a060448501525180915260c4830191905f5b818110611c145750505091815f81819530606483015242608483015203925af194851561082857611a6795611c01575b508080804781808080611bb68560011c809661219c565b6006549095906001600160a01b03165af150611bd061187d565b506007546001600160a01b03165af150611be861187d565b506007805460ff60b81b1916905543600a555f80611a5b565b611c0d91505f906117fc565b5f80611b9f565b82516001600160a01b031684528a945060209384019390920191600101611b6f565b90505f611b32565b90506020813d602011611c78575b81611c59602093836117fc565b8101031261029657516001600160a01b0381168103610296575f611afe565b3d9150611c4c565b5085811015611a56565b90505f52601560205260ff60405f205416155f611a4f565b5f91805f52601560205260ff60405f20541680611d89575b15611cf8575090506064611cd06010548361186a565b04905b8115611a355781611cf1929750611ce99161219c565b9530856121b6565b5f80611a35565b885f52601560205260ff60405f20541680611d7e575b15611d2b575090506064611d24600f548361186a565b0490611cd3565b5f52601560205260ff60405f2054161580611d67575b80611d5c575b15611cd35790506064611d246011548361186a565b506011541515611d47565b50875f52601560205260ff60405f20541615611d41565b50600f541515611d0e565b506010541515611cba565b9150865f52601360205260ff60405f2054168015611db4575b1591611a2f565b50805f52601360205260ff60405f205416611dad565b60b81c60ff161592505f611a28565b5f546001600160a01b031688811415908161200a575b5080612002575b80611ff6575b15611a155760a81c60ff16611f1c575b865f52601560205260ff60405f20541680611f05575b15611e7357600b548211611e6457805f526001602052611e4660405f2054836121a9565b600d5410611e55575b5f611a15565b63d867451160e01b5f5260045ffd5b632c676b8560e21b5f5260045ffd5b805f52601560205260ff60405f20541680611eee575b15611eac57600c548211611e9d575b611e4f565b6338aa438560e21b5f5260045ffd5b805f52601460205260ff60405f205416611e4f57805f526001602052611ed660405f2054836121a9565b600d541015611e985763d867451160e01b5f5260045ffd5b50865f52601460205260ff60405f20541615611e89565b50805f52601460205260ff60405f20541615611e22565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681141580611fc3575b15611e0c57325f52601660205260405f20546002194301904382116103345781119081611fad575b5015611f9e57325f5260166020524360405f2055805f5260166020524360405f2055611e0c565b630301a6ed60e61b5f5260045ffd5b9050815f52601660205260405f2054105f611f77565b507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316811415611f4f565b5061dead821415611dfc565b506001611df6565b90508214155f611def565b50875f52601460205260ff60405f2054168015612033575b15611a10565b50815f52601460205260ff60405f20541661202d565b5060ff8160b81c1615611a0a565b638dda39df60e01b5f5260045ffd5b50815f52601460205260ff60405f2054166119f8565b50875f52601460205260ff60405f2054166119f1565b6339a9b03560e21b5f5260045ffd5b50325f52601260205260ff60405f205416156119db565b503332146119d4565b50335f52601260205260ff60405f205416156119c5565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffd5b60407f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79160018060a01b0316805f526013602052815f2060ff19815416905581519081525f6020820152a1565b60407f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79160018060a01b0316805f526013602052815f20600160ff19825416179055815190815260016020820152a1565b9190820391821161033457565b9190820180921161033457565b6001600160a01b031690816122305760207fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916121f5856003546121a9565b6003555b6001600160a01b0316938461221a5780600354036003555b604051908152a3565b845f526001825260405f20818154019055612211565b815f52600160205260405f205483811061227c577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9184602092855f52600184520360405f20556121f9565b91905063391434e360e21b5f5260045260245260445260645ffdfea2646970667358221220f0b6128b7ed0edba6f0a4795f693eb3a8c289f8afcd32b0439e4a00e578d4aa064736f6c634300081a00339d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df74b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92
Deployed Bytecode
0x60806040526004361015610018575b361561001657005b005b5f3560e01c806301339c21146116c357806306fdde0314611608578063095ea7b314611586578063106a5a8f146114e85780631694505e146114a457806318160ddd1461148757806323b872dd146113a85780632b14ca561461138b578063307aebc914611366578063313ce5671461134b5780633bbac5791461130e57806341aea9de146112a6578063470624021461128957806349bd5a5e146112455780634e6fd6c4146112295780634fbee193146111ec578063538ba4f9146111d25780635932ead11461116a57806359512ab0146111025780635cce86cd146110c55780635d0044ca146110575780636ca541e51461103257806370a0823114610ffa57806370db69d614610fdd578063715018a614610f5057806372ac248614610ec6578063790ca41314610ea95780638da5cb5b14610e8257806395927c2514610e2657806395d89b4114610d225780639a7a23d614610c5f5780639c0db5f314610a9e578063a9059cbb14610a6d578063acb2ad6f14610a50578063ad29ffde146109ad578063afa4f3b214610911578063b62496f5146108d4578063b8eb3546146108b7578063bc063e1a1461089c578063c04a541414610874578063cb963728146106af578063d00efb2f14610692578063d26ed3e314610636578063d5759ba314610611578063dcf7aef3146105a6578063dd62ed3e14610556578063e2f4560514610539578063e6c1909b14610514578063ee5ecc891461047a578063ef998cf01461040c578063f2fde38b14610348578063f53bc835146102b7578063f8b45b051461029a5763fd72e22a0361000e5734610296575f366003190112610296576006546040516001600160a01b039091168152602090f35b5f80fd5b34610296575f366003190112610296576020600d54604051908152f35b34610296576020366003190112610296576004356102d36118bc565b6003548060011b9080820460021490151715610334576103e890048110610325576020817f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f92600b55604051908152a1005b631fbaba3560e01b5f5260045ffd5b634e487b7160e01b5f52601160045260245ffd5b3461029657602036600319011261029657610361611760565b6103696118bc565b6001600160a01b0381169081156103f9575f5461039f91906001600160a01b0316806103e1575b5061039a8161214b565b61192f565b5f80546001600160a01b03198116831782556001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b806103ee6103f3926120fe565b6118e2565b83610390565b631e4fbdf760e01b5f525f60045260245ffd5b34610296576020366003190112610296576004356104286118bc565b6003548060011b9080820460021490151715610334576103e890048110610325576020817f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b792600c55604051908152a1005b3461029657602036600319011261029657610493611760565b61049b6118bc565b6001600160a01b0316801561050557600680546001600160a01b031981168317909155604080516001600160a01b0393841681529290911660208301527fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059190819081015b0390a1005b639fabe1c160e01b5f5260045ffd5b34610296575f36600319011261029657602060ff60075460b01c166040519015158152f35b34610296575f366003190112610296576020600e54604051908152f35b346102965760403660031901126102965761056f611760565b610577611776565b6001600160a01b039182165f908152600260209081526040808320949093168252928352819020549051908152f35b34610296576020366003190112610296576004356105c26118bc565b601981116106025760407f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d91600f5481600f5582519182526020820152a1005b63cd4e616760e01b5f5260045ffd5b34610296575f36600319011261029657602060ff60075460a01c166040519015158152f35b34610296576020366003190112610296576004356106526118bc565b601981116106025760407f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc25916011548160115582519182526020820152a1005b34610296575f366003190112610296576020600854604051908152f35b34610296576020366003190112610296576106c8611760565b6106d06118bc565b6001600160a01b038116806107615750478015610752575f80808084335af16106f761187d565b5015610743577f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b915b604080516001600160a01b03909216825260208201929092529081908101610500565b633398652560e11b5f5260045ffd5b634870bf9160e01b5f5260045ffd5b6040516370a0823160e01b8152306004820152602081602481855afa908115610828575f91610842575b50809181156108335760405163a9059cbb60e01b81523360048201526024810192909252602090829060449082905f905af18015610828576107f0575b507f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b91610720565b6020813d602011610820575b81610809602093836117fc565b8101031261029657518015150361029657826107c8565b3d91506107fc565b6040513d5f823e3d90fd5b63df95788360e01b5f5260045ffd5b90506020813d60201161086c575b8161085d602093836117fc565b8101031261029657518361078b565b3d9150610850565b34610296575f366003190112610296576007546040516001600160a01b039091168152602090f35b34610296575f36600319011261029657602060405160198152f35b34610296575f366003190112610296576020600c54604051908152f35b34610296576020366003190112610296576001600160a01b036108f5611760565b165f526015602052602060ff60405f2054166040519015158152f35b346102965760203660031901126102965760043561092d6118bc565b600354801581800460011481171561033457620f42408204831061032557600582029182046005141715610334576103e89004811161099e5760407f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91600e5481600e5582519182526020820152a1005b63fd7850ad60e01b5f5260045ffd5b34610296576109bb3661179b565b906109c46118bc565b5f5b8181106109cf57005b807f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df784610a07610a02600195878a611832565b611856565b848060a01b0381165f526013602052610a2f8260405f209060ff801983541691151516179055565b604080516001600160a01b039290921682529115156020820152a1016109c6565b34610296575f366003190112610296576020601154604051908152f35b3461029657604036600319011261029657610a93610a89611760565b6024359033611980565b602060405160018152f35b3461029657610aac3661179b565b9091610ab66118bc565b5f5b838110610ac157005b6001906001600160a01b03610ada610a02838887611832565b165f52601560205260ff60405f2054161580610c19575b80610bfa575b80610bdd575b80610b86575b610b0e575b01610ab8565b7ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc884610b3e610a02848988611832565b848060a01b0381165f526012602052610b668260405f209060ff801983541691151516179055565b604080516001600160a01b039290921682529115156020820152a1610b08565b50818060a01b03610b9b610a02838887611832565b165f52601360205260ff60405f205416158015610b035750818060a01b03610bc7610a02838887611832565b165f52601460205260ff60405f20541615610b03565b50818060a01b03610bf2610a02838887611832565b161515610afd565b50610c09610a02828786611832565b3090838060a01b03161415610af7565b50610c28610a02828786611832565b828060a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1690838060a01b03161415610af1565b3461029657604036600319011261029657610c78611760565b602435801515810361029657610c8c6118bc565b6001600160a01b0382165f8181526015602052604090205490929060ff16610d13577fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab925f526015602052610cf08260405f209060ff801983541691151516179055565b604080516001600160a01b03909216825291151560208201529081908101610500565b6304eb79b560e31b5f5260045ffd5b34610296575f366003190112610296576040515f6005548060011c90600181168015610e1c575b602083108114610e0857828552908115610de45750600114610d86575b610d8283610d76818503826117fc565b60405191829182611736565b0390f35b91905060055f527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0915f905b808210610dca57509091508101602001610d76610d66565b919260018160209254838588010152019101909291610db2565b60ff191660208086019190915291151560051b84019091019150610d769050610d66565b634e487b7160e01b5f52602260045260245ffd5b91607f1691610d49565b3461029657602036600319011261029657600435610e426118bc565b601981116106025760407f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b01916010548160105582519182526020820152a1005b34610296575f366003190112610296575f546040516001600160a01b039091168152602090f35b34610296575f366003190112610296576020600954604051908152f35b3461029657602036600319011261029657610edf611760565b610ee76118bc565b6001600160a01b0316801561050557600780546001600160a01b031981168317909155604080516001600160a01b0393841681529290911660208301527f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c919081908101610500565b34610296575f36600319011261029657610f686118bc565b5f546001600160a01b031680610fca575b610f825f61214b565b610f8b5f61192f565b5f80546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b806103ee610fd7926120fe565b80610f79565b34610296575f366003190112610296576020600b54604051908152f35b34610296576020366003190112610296576001600160a01b0361101b611760565b165f526001602052602060405f2054604051908152f35b34610296575f36600319011261029657602060ff60075460a81c166040519015158152f35b34610296576020366003190112610296576004356110736118bc565b600354600381029080820460031490151715610334576103e890048110610325576020817fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618692600d55604051908152a1005b34610296576020366003190112610296576001600160a01b036110e6611760565b165f526014602052602060ff60405f2054166040519015158152f35b34610296576020366003190112610296577f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b602061113e61178c565b6111466118bc565b151560075460ff60b01b8260b01b169060ff60b01b191617600755604051908152a1005b34610296576020366003190112610296577f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f60206111a661178c565b6111ae6118bc565b151560075460ff60a81b8260a81b169060ff60a81b191617600755604051908152a1005b34610296575f3660031901126102965760206040515f8152f35b34610296576020366003190112610296576001600160a01b0361120d611760565b165f526013602052602060ff60405f2054166040519015158152f35b34610296575f36600319011261029657602060405161dead8152f35b34610296575f366003190112610296576040517f000000000000000000000000e521fa297409b995f76f48dc8245833831dea4836001600160a01b03168152602090f35b34610296575f366003190112610296576020600f54604051908152f35b34610296576020366003190112610296577ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78160206112e261178c565b6112ea6118bc565b151560075460ff60a01b8260a01b169060ff60a01b191617600755604051908152a1005b34610296576020366003190112610296576001600160a01b0361132f611760565b165f526012602052602060ff60405f2054166040519015158152f35b34610296575f36600319011261029657602060405160128152f35b34610296575f36600319011261029657602060ff60075460c01c166040519015158152f35b34610296575f366003190112610296576020601054604051908152f35b34610296576060366003190112610296576113c1611760565b6113c9611776565b6001600160a01b0382165f8181526002602090815260408083203384529091529020549092604435929160018101611407575b50610a939350611980565b83811061146c57841561145957331561144657610a93945f52600260205260405f2060018060a01b0333165f526020528360405f2091039055846113fc565b634a1406b160e11b5f525f60045260245ffd5b63e602df0560e01b5f525f60045260245ffd5b8390637dc7a0d960e11b5f523360045260245260445260645ffd5b34610296575f366003190112610296576020600354604051908152f35b34610296575f366003190112610296576040517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03168152602090f35b34610296576114f63661179b565b906114ff6118bc565b5f5b81811061150a57005b807f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928461153d610a02600195878a611832565b848060a01b0381165f5260146020526115658260405f209060ff801983541691151516179055565b604080516001600160a01b039290921682529115156020820152a101611501565b346102965760403660031901126102965761159f611760565b602435903315611459576001600160a01b031690811561144657335f52600260205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610296575f366003190112610296576040515f6004548060011c906001811680156116b9575b602083108114610e0857828552908115610de4575060011461165b57610d8283610d76818503826117fc565b91905060045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b915f905b80821061169f57509091508101602001610d76610d66565b919260018160209254838588010152019101909291611687565b91607f169161162f565b34610296575f366003190112610296576116db6118bc565b60075460ff8160c01c166117275760ff60c01b1916600160c01b1760075543600855426009557f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e26695f80a1005b6319f4db0f60e31b5f5260045ffd5b602060409281835280519182918282860152018484015e5f828201840152601f01601f1916010190565b600435906001600160a01b038216820361029657565b602435906001600160a01b038216820361029657565b60043590811515820361029657565b9060406003198301126102965760043567ffffffffffffffff811161029657826023820112156102965780600401359267ffffffffffffffff84116102965760248460051b8301011161029657602401919060243580151581036102965790565b90601f8019910116810190811067ffffffffffffffff82111761181e57604052565b634e487b7160e01b5f52604160045260245ffd5b91908110156118425760051b0190565b634e487b7160e01b5f52603260045260245ffd5b356001600160a01b03811681036102965790565b8181029291811591840414171561033457565b3d156118b7573d9067ffffffffffffffff821161181e57604051916118ac601f8201601f1916602001846117fc565b82523d5f602084013e565b606090565b5f546001600160a01b031633036118cf57565b63118cdaa760e01b5f523360045260245ffd5b60407f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929160018060a01b0316805f526014602052815f2060ff19815416905581519081525f6020820152a1565b60407f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929160018060a01b0316805f526014602052815f20600160ff19825416179055815190815260016020820152a1565b6001600160a01b0381169291905f84156120eb576001600160a01b0383169384156120d8578094865f52601260205260ff60405f2054166120925786331480156120c1575b156120925786321480156120b8575b80156120a1575b156120925760075460ff8160c01c16801561207c575b8015612066575b156120575760ff8160a01c1680612049575b80612015575b611dd9575b506007549160ff8360b01c169283611dca575b5082611d94575b82611ca2575b5050305f52600160205260405f205490600e549681611c8a575b5080611c80575b611a69575b5050611a6793506121b6565b565b600a54431115611a5b576007805460ff60b81b1916600160b81b1790556040519581611a966060896117fc565b6002885260208801916040368437885115611842573083526040516315ab88c960e31b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169490602081600481895afa908115610828575f91611c3e575b508a5160011015611842576001600160a01b031660408b015260148281029280159084049091141715610334578110611c36575b50823b1561029657969060405197889263791ac94760e01b845260a484019160048501525f602485015260a060448501525180915260c4830191905f5b818110611c145750505091815f81819530606483015242608483015203925af194851561082857611a6795611c01575b508080804781808080611bb68560011c809661219c565b6006549095906001600160a01b03165af150611bd061187d565b506007546001600160a01b03165af150611be861187d565b506007805460ff60b81b1916905543600a555f80611a5b565b611c0d91505f906117fc565b5f80611b9f565b82516001600160a01b031684528a945060209384019390920191600101611b6f565b90505f611b32565b90506020813d602011611c78575b81611c59602093836117fc565b8101031261029657516001600160a01b0381168103610296575f611afe565b3d9150611c4c565b5085811015611a56565b90505f52601560205260ff60405f205416155f611a4f565b5f91805f52601560205260ff60405f20541680611d89575b15611cf8575090506064611cd06010548361186a565b04905b8115611a355781611cf1929750611ce99161219c565b9530856121b6565b5f80611a35565b885f52601560205260ff60405f20541680611d7e575b15611d2b575090506064611d24600f548361186a565b0490611cd3565b5f52601560205260ff60405f2054161580611d67575b80611d5c575b15611cd35790506064611d246011548361186a565b506011541515611d47565b50875f52601560205260ff60405f20541615611d41565b50600f541515611d0e565b506010541515611cba565b9150865f52601360205260ff60405f2054168015611db4575b1591611a2f565b50805f52601360205260ff60405f205416611dad565b60b81c60ff161592505f611a28565b5f546001600160a01b031688811415908161200a575b5080612002575b80611ff6575b15611a155760a81c60ff16611f1c575b865f52601560205260ff60405f20541680611f05575b15611e7357600b548211611e6457805f526001602052611e4660405f2054836121a9565b600d5410611e55575b5f611a15565b63d867451160e01b5f5260045ffd5b632c676b8560e21b5f5260045ffd5b805f52601560205260ff60405f20541680611eee575b15611eac57600c548211611e9d575b611e4f565b6338aa438560e21b5f5260045ffd5b805f52601460205260ff60405f205416611e4f57805f526001602052611ed660405f2054836121a9565b600d541015611e985763d867451160e01b5f5260045ffd5b50865f52601460205260ff60405f20541615611e89565b50805f52601460205260ff60405f20541615611e22565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031681141580611fc3575b15611e0c57325f52601660205260405f20546002194301904382116103345781119081611fad575b5015611f9e57325f5260166020524360405f2055805f5260166020524360405f2055611e0c565b630301a6ed60e61b5f5260045ffd5b9050815f52601660205260405f2054105f611f77565b507f000000000000000000000000e521fa297409b995f76f48dc8245833831dea4836001600160a01b0316811415611f4f565b5061dead821415611dfc565b506001611df6565b90508214155f611def565b50875f52601460205260ff60405f2054168015612033575b15611a10565b50815f52601460205260ff60405f20541661202d565b5060ff8160b81c1615611a0a565b638dda39df60e01b5f5260045ffd5b50815f52601460205260ff60405f2054166119f8565b50875f52601460205260ff60405f2054166119f1565b6339a9b03560e21b5f5260045ffd5b50325f52601260205260ff60405f205416156119db565b503332146119d4565b50335f52601260205260ff60405f205416156119c5565b63ec442f0560e01b5f525f60045260245ffd5b634b637e8f60e11b5f525f60045260245ffd5b60407f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79160018060a01b0316805f526013602052815f2060ff19815416905581519081525f6020820152a1565b60407f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79160018060a01b0316805f526013602052815f20600160ff19825416179055815190815260016020820152a1565b9190820391821161033457565b9190820180921161033457565b6001600160a01b031690816122305760207fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916121f5856003546121a9565b6003555b6001600160a01b0316938461221a5780600354036003555b604051908152a3565b845f526001825260405f20818154019055612211565b815f52600160205260405f205483811061227c577fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9184602092855f52600184520360405f20556121f9565b91905063391434e360e21b5f5260045260245260445260645ffdfea2646970667358221220f0b6128b7ed0edba6f0a4795f693eb3a8c289f8afcd32b0439e4a00e578d4aa064736f6c634300081a0033
Deployed Bytecode Sourcemap
25518:14945:0:-:0;;;;;;;;;-1:-1:-1;25518:14945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;25784:31;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26227:24;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;13750:12;25518:14945;;;;;;;;31599:1;25518:14945;;;;;;;31604:4;25518:14945;;31571:38;;25518:14945;;;;31666:17;25518:14945;31636:15;25518:14945;;;;;;31666:17;25518:14945;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;23419:62;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;;;24546:22;;24542:91;;25518:14945;;30146:4;;25518:14945;-1:-1:-1;;;;;25518:14945:0;;29931:135;;25518:14945;30102:4;;;;:::i;:::-;30146;:::i;:::-;25518:14945;;;-1:-1:-1;;;;;;25518:14945:0;;;;;;-1:-1:-1;;;;;25518:14945:0;;24971:40;;25518:14945;24971:40;25518:14945;29931:135;30000:5;;30049;30000;;:::i;:::-;30049;:::i;:::-;29931:135;;;24542:91;24591:31;;;25518:14945;24591:31;25518:14945;;;;;24591:31;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;13750:12;25518:14945;;;;;;;;31797:1;25518:14945;;;;;;;31802:4;25518:14945;;31769:38;;25518:14945;;;;31865:19;25518:14945;31834:16;25518:14945;;;;;;31865:19;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;23419:62;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;30524:31;;25518:14945;;30601:16;25518:14945;;-1:-1:-1;;;;;;25518:14945:0;;;;;;;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;30678:48;;25518:14945;;;;;30678:48;;;;25518:14945;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;25928:24;25518:14945;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26258:33;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;;;;;;;14516:11;25518:14945;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;26163:2;32587:18;;25518:14945;;;32696:29;25518:14945;32649:6;25518:14945;;32649:6;25518:14945;;;;;;;;;;32696:29;25518:14945;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;25860:27;25518:14945;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;26163:2;33055:23;;25518:14945;;;33184:39;25518:14945;33122:11;25518:14945;;33122:11;25518:14945;;;;;;;;;;33184:39;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26016:26;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;23419:62;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;;34648:22;25518:14945;;34721:21;;34764:10;;25518:14945;;;34600:10;;;;;34821:39;;;;:::i;:::-;;25518:14945;;;35128:35;34644:470;;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;;;;;35128:35;25518:14945;;;;;;;;;;;;;;;;;;;34644:470;25518:14945;;-1:-1:-1;;;34962:39:0;;34995:4;25518:14945;34962:39;;25518:14945;;;34962:39;25518:14945;34962:39;;;;;;;;25518:14945;34962:39;;;34644:470;34953:48;;35023:10;;;25518:14945;;;;-1:-1:-1;;;35060:43:0;;34600:10;25518:14945;35060:43;;25518:14945;;;;;;;;;;;;;;;;-1:-1:-1;;35060:43:0;;;;;;;;34644:470;;35128:35;34644:470;;;35060:43;25518:14945;35060:43;;25518:14945;35060:43;;;;;;25518:14945;35060:43;;;:::i;:::-;;;25518:14945;;;;;;;;;;;35060:43;;;;;;-1:-1:-1;35060:43:0;;;25518:14945;;;;;;;;;;;;;;;;;;34962:39;;;25518:14945;34962:39;;25518:14945;34962:39;;;;;;25518:14945;34962:39;;;:::i;:::-;;;25518:14945;;;;;34962:39;;;;;;-1:-1:-1;34962:39:0;;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;25821:32;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;26163:2;25518:14945;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26199:22;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;-1:-1:-1;;;;;25518:14945:0;;:::i;:::-;;;;26542:57;25518:14945;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;13750:12;25518:14945;;;;;;;;;;;;;32267:7;25518:14945;;32236:38;;25518:14945;;32335:1;25518:14945;;;;;32335:1;25518:14945;;;;;32340:4;25518:14945;;32309:35;;25518:14945;;;32461:39;25518:14945;32391:18;25518:14945;;32391:18;25518:14945;;;;;;;;;;32461:39;25518:14945;;;;;;;;;;;;;;;;;:::i;:::-;23419:62;;;:::i;:::-;25518:14945;33371:19;;;;;;25518:14945;33392:3;33428:11;39876:31;33428:11;;;25518:14945;33428:11;;;;:::i;:::-;;:::i;:::-;25518:14945;;;;;;;;;39826:18;25518:14945;;39826:35;25518:14945;;;;;;;;;;;;;;;;;;;39826:35;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;39876:31;25518:14945;33356:13;;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;;26352:26;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;14282:5;25518:14945;;:::i;:::-;;;4127:10;;14282:5;:::i;:::-;25518:14945;;;;;;;;;;;;;;:::i;:::-;23419:62;;;;:::i;:::-;25518:14945;33835:19;;;;;;25518:14945;33856:3;25518:14945;;-1:-1:-1;;;;;33924:11:0;;25518:14945;33924:11;;;:::i;:::-;25518:14945;;;33898:25;25518:14945;;;;;;;;33897:39;33896:102;;;33856:3;33896:152;;;33856:3;33896:201;;;33856:3;33896:313;;;33856:3;33875:377;;33856:3;25518:14945;33820:13;;33875:377;40213:23;34233:11;;;;;;;:::i;:::-;25518:14945;;;;;;;;;40176:5;25518:14945;;40176:22;25518:14945;;;;;;;;;;;;;;;;;;;40176:22;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;40213:23;33875:377;;33896:313;25518:14945;;;;;;34138:11;;;;;;:::i;:::-;25518:14945;;;34119:18;25518:14945;;;;;;;;34118:32;:90;;33896:313;34118:90;25518:14945;;;;;;34196:11;;;;;;:::i;:::-;25518:14945;;;34175:20;25518:14945;;;;;;;;34174:34;33896:313;;:201;25518:14945;;;;;;34069:11;;;;;;:::i;:::-;25518:14945;34069:27;;33896:201;;:152;34019:11;;;;;;;:::i;:::-;34042:4;25518:14945;;;;;;;34019:28;;33896:152;;:102;33958:11;;;;;;;:::i;:::-;25518:14945;;;;;33981:15;25518:14945;;;;;;;;33958:39;;33896:102;;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;;;;;;;;;;23419:62;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;;;;;;34396:25;25518:14945;;;;;;;;;;;;;40414:40;25518:14945;;;34396:25;25518:14945;;40360:39;25518:14945;;;;;;;;;;;;;;;;;;;40360:39;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;;;;;40414:40;25518:14945;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;12883:7;25518:14945;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;12883:7;25518:14945;;;;;;;;;;;;-1:-1:-1;25518:14945:0;;-1:-1:-1;25518:14945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;;;;;;12883:7;25518:14945;;;;;;;-1:-1:-1;25518:14945:0;;-1:-1:-1;25518:14945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;26163:2;32814:19;;25518:14945;;;32927:31;25518:14945;32877:7;25518:14945;;32877:7;25518:14945;;;;;;;;;;32927:31;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26048:25;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;23419:62;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;30854:32;;25518:14945;;30932:17;25518:14945;;-1:-1:-1;;;;;;25518:14945:0;;;;;;;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;31012:50;;25518:14945;;;;;31012:50;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;23419:62;;:::i;:::-;25518:14945;;-1:-1:-1;;;;;25518:14945:0;;29931:135;;25518:14945;30102:4;25518:14945;30102:4;:::i;:::-;30146;25518:14945;30146:4;:::i;:::-;25518:14945;;;-1:-1:-1;;;;;;25518:14945:0;;;;-1:-1:-1;;;;;25518:14945:0;24971:40;25518:14945;;24971:40;25518:14945;29931:135;30000:5;;30049;30000;;:::i;30049:::-;29931:135;;;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;;26172:21;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;-1:-1:-1;;;;;25518:14945:0;;:::i;:::-;;;;13918:9;25518:14945;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;25893:29;25518:14945;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;23419:62;;:::i;:::-;13750:12;25518:14945;13750:12;25518:14945;;;;;;13750:12;25518:14945;;;;;;;32005:4;25518:14945;;31972:38;;25518:14945;;;;32070:23;25518:14945;32037:18;25518:14945;;;;;;32070:23;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;-1:-1:-1;;;;;25518:14945:0;;:::i;:::-;;;;26484:52;25518:14945;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;31464:22;25518:14945;;;:::i;:::-;23419:62;;:::i;:::-;25518:14945;;31429:20;25518:14945;;;;;;;;;;;;;;;31429:20;25518:14945;;;;;;31464:22;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;31325:25;25518:14945;;;:::i;:::-;23419:62;;:::i;:::-;25518:14945;;31285:25;25518:14945;;;;;;;;;;;;;;;31285:25;25518:14945;;;;;;31325:25;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;-1:-1:-1;;;;;25518:14945:0;;:::i;:::-;;;;26428:50;25518:14945;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;25726:6;25518:14945;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;25740:38;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26297:21;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;31180:23;25518:14945;;;:::i;:::-;23419:62;;:::i;:::-;25518:14945;;31142:23;25518:14945;;;;;;;;;;;;;;;31142:23;25518:14945;;;;;;31180:23;25518:14945;;;;;;;-1:-1:-1;;25518:14945:0;;;;-1:-1:-1;;;;;25518:14945:0;;:::i;:::-;;;;26385:37;25518:14945;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;13603:2;25518:14945;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;25987:22;25518:14945;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;26324:22;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;;;:::i;:::-;-1:-1:-1;;;;;25518:14945:0;;;;;;14516:11;25518:14945;;;;;;;;4127:10;25518:14945;;;;;;;;;;;;;;;21608:37;;21604:388;;25518:14945;15871:5;;;;;:::i;21604:388::-;21665:24;;;21661:208;;20811:19;;20807:89;;4127:10;20909:21;20905:90;;15871:5;25518:14945;;;14516:11;25518:14945;;;;;;;;;;4127:10;25518:14945;-1:-1:-1;25518:14945:0;;;;;-1:-1:-1;25518:14945:0;;;;;21604:388;;;20905:90;20953:31;;;25518:14945;20953:31;25518:14945;;;;;20953:31;20807:89;20853:32;;;25518:14945;20853:32;25518:14945;;;;;20853:32;21661:208;21716:138;;;;;25518:14945;21716:138;4127:10;25518:14945;;;;;;;;21716:138;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;;13750:12;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;25568:49;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;:::i;:::-;23419:62;;;:::i;:::-;25518:14945;33607:19;;;;;;25518:14945;33628:3;33666:11;40056:33;33666:11;;;25518:14945;33666:11;;;;:::i;:::-;25518:14945;;;;;;;;;40004:20;25518:14945;;40004:37;25518:14945;;;;;;;;;;;;;;;;;;;40004:37;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;;;;;;;40056:33;25518:14945;33592:13;;25518:14945;;;;;;-1:-1:-1;;25518:14945:0;;;;;;:::i;:::-;;;4127:10;;20811:19;20807:89;;-1:-1:-1;;;;;25518:14945:0;;20909:21;;20905:90;;4127:10;25518:14945;;21004:11;25518:14945;;;;;;-1:-1:-1;25518:14945:0;;;;;-1:-1:-1;25518:14945:0;;;;;;;21083:31;25518:14945;4127:10;21083:31;;25518:14945;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;25518:14945:0;;-1:-1:-1;25518:14945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;23419:62;;:::i;:::-;30264:10;25518:14945;;;;;;;;-1:-1:-1;;;;25518:14945:0;-1:-1:-1;;;25518:14945:0;30264:10;25518:14945;30345:12;30331:26;25518:14945;30380:15;30367:28;25518:14945;30410:8;-1:-1:-1;;30410:8:0;25518:14945;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25518:14945:0;;;;:::o;:::-;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;:::o;:::-;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;25518:14945:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;-1:-1:-1;25518:14945:0;;;;;-1:-1:-1;25518:14945:0;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;40213:23;25518:14945;;-1:-1:-1;;25518:14945:0;;;;;:::i;:::-;;;;-1:-1:-1;25518:14945:0;;;;:::o;:::-;;;:::o;23715:162::-;23629:6;25518:14945;-1:-1:-1;;;;;25518:14945:0;4127:10;23774:23;23770:101;;23715:162::o;23770:101::-;23820:40;;;23629:6;23820:40;4127:10;23820:40;25518:14945;;23629:6;23820:40;39920:176;25518:14945;40056:33;39920:176;25518:14945;;;;;;;23629:6;25518:14945;40004:20;25518:14945;;;23629:6;25518:14945;;;;;;;;;;40056:33;25518:14945;;23629:6;25518:14945;;;;40056:33;39920:176::o;:::-;25518:14945;40056:33;39920:176;25518:14945;;;;;;;-1:-1:-1;25518:14945:0;40004:20;25518:14945;;;-1:-1:-1;25518:14945:0;30102:4;25518:14945;;;;;;;;;;40056:33;25518:14945;;30102:4;25518:14945;;;;40056:33;39920:176::o;16278:330::-;-1:-1:-1;;;;;25518:14945:0;;;16278:330;;16407:1;16391:18;;16387:86;;-1:-1:-1;;;;;25518:14945:0;;;16486:16;;16482:86;;16595:5;25518:14945;;16407:1;25518:14945;35384:5;25518:14945;;;;16407:1;25518:14945;;;;;35318:10;;35429:14;:32;;;;16278:330;25518:14945;;;35355:9;;35508:14;:34;;;;16278:330;35508:52;;;;16278:330;25518:14945;;;35629:10;25518:14945;;;;;;35629:56;;;;16278:330;35629:100;;;;16278:330;25518:14945;;;;;;;;35791:42;;;16278:330;35791:115;;;16278:330;35916:1651;;16278:330;25518:14945;35629:10;25518:14945;;;;;;;37592:39;;;;16278:330;37592:108;;;;16278:330;37711:661;;;16278:330;38418:4;;;16407:1;25518:14945;13918:9;25518:14945;;;16407:1;25518:14945;;;38463:18;25518:14945;38495:43;;;;16278:330;38495:57;;;;16278:330;38491:244;;16278:330;38769:6;;;;;;:::i;:::-;16278:330::o;38491:244::-;38587:26;25518:14945;38572:12;:41;38568:157;38491:244;38568:157;35629:10;25518:14945;;-1:-1:-1;;;;25518:14945:0;-1:-1:-1;;;25518:14945:0;;;;;;28117:1;25518:14945;;;;:::i;:::-;38925:1;25518:14945;;;;;;;;;;;;;;;38418:4;25518:14945;;;;-1:-1:-1;;;38980:22:0;;:15;-1:-1:-1;;;;;25518:14945:0;;;;;38980:22;25518:14945;;38980:22;;;;;;;16407:1;38980:22;;;38568:157;38970:32;25518:14945;;13918:9;25518:14945;;;;-1:-1:-1;;;;;25518:14945:0;;;;;39058:2;25518:14945;;;;;;;;;;;;;;;;39075:23;-1:-1:-1;39071:77:0;;38568:157;39158:186;;;;;;25518:14945;;;;;;;;;;39158:186;;25518:14945;;;39158:186;38980:22;39158:186;;25518:14945;16407:1;25518:14945;;;;;;;;;;;;;;;;;;16407:1;25518:14945;;;;;;38418:4;;;;;16407:1;38418:4;;;;25518:14945;;;;39319:15;25518:14945;;;;39158:186;;;;;;;;;38769:6;39158:186;;;25518:14945;39376:21;;;;;25518:14945;;;;39488:29;25518:14945;13918:9;25518:14945;39488:29;;;:::i;:::-;39550:16;25518:14945;;;;-1:-1:-1;;;;;25518:14945:0;39542:81;;;;;:::i;:::-;-1:-1:-1;35629:10:0;25518:14945;-1:-1:-1;;;;;25518:14945:0;39648:83;;;;;:::i;:::-;-1:-1:-1;35629:10:0;25518:14945;;-1:-1:-1;;;;25518:14945:0;;;38572:12;38587:26;25518:14945;-1:-1:-1;;38491:244:0;;39158:186;;;;16407:1;39158:186;;:::i;:::-;16407:1;39158:186;;;25518:14945;;;-1:-1:-1;;;;;25518:14945:0;;;;;-1:-1:-1;25518:14945:0;;;;;;;;;13918:9;25518:14945;;;39071:77;39114:23;;39071:77;;;38980:22;;;25518:14945;38980:22;;25518:14945;38980:22;;;;;;25518:14945;38980:22;;;:::i;:::-;;;25518:14945;;;;;-1:-1:-1;;;;;25518:14945:0;;;;;;38980:22;;;;;;-1:-1:-1;38980:22:0;;38495:57;38452:29;;;;;38495:57;;:43;25518:14945;;16407:1;25518:14945;38507:25;25518:14945;;;;16407:1;25518:14945;;;38506:32;38495:43;;;37711:661;16407:1;25518:14945;;16407:1;25518:14945;37772:25;25518:14945;;;;16407:1;25518:14945;;;37772:44;;;37711:661;37768:461;;;25518:14945;;;37864:3;37844:16;37853:7;25518:14945;37844:16;;:::i;:::-;25518:14945;37768:461;;38247:8;38243:119;37711:661;38243:119;38275:14;38342:4;38275:14;;;;;;:::i;:::-;38335:4;;38342;;:::i;:::-;38243:119;;37711:661;;37768:461;25518:14945;16407:1;25518:14945;37772:25;25518:14945;;;;16407:1;25518:14945;;;37892:45;;;37768:461;37888:341;;;25518:14945;;;37984:3;37965:15;37974:6;25518:14945;37965:15;;:::i;:::-;25518:14945;37888:341;37768:461;;37888:341;16407:1;25518:14945;37772:25;25518:14945;;;;16407:1;25518:14945;;;38029:30;:82;;;37888:341;38029:117;;;37888:341;38008:221;37768:461;38008:221;25518:14945;;38211:3;38187:20;38196:11;25518:14945;38187:20;;:::i;38029:117::-;25518:14945;38131:11;25518:14945;38131:15;;38029:117;;:82;25518:14945;;16407:1;25518:14945;37772:25;25518:14945;;;;16407:1;25518:14945;;;38079:32;38029:82;;37892:45;25518:14945;37927:6;25518:14945;37927:10;;37892:45;;37772:44;25518:14945;37805:7;25518:14945;37805:11;;37772:44;;37592:108;25518:14945;;;16407:1;25518:14945;37649:18;25518:14945;;;;16407:1;25518:14945;;;37649:50;;;;37592:108;37647:53;37592:108;;;37649:50;25518:14945;;16407:1;25518:14945;37649:18;25518:14945;;;;16407:1;25518:14945;;;37649:50;;37592:39;25518:14945;;;;37620:11;;-1:-1:-1;37592:39:0;;;35916:1651;16407:1;25518:14945;-1:-1:-1;;;;;25518:14945:0;35963:15;;;;;;:48;;35916:1651;35963:86;;;;35916:1651;35963:124;;;35916:1651;35942:1615;35916:1651;35942:1615;25518:14945;;;;36120:635;;35942:1615;25518:14945;16407:1;25518:14945;36798:25;25518:14945;;;;16407:1;25518:14945;;;36798:60;;;35942:1615;36773:770;;;36917:6;25518:14945;36907:16;;25518:14945;;;16407:1;25518:14945;13918:9;25518:14945;;37001:22;25518:14945;16407:1;25518:14945;;37001:22;;:::i;:::-;37027:9;25518:14945;-1:-1:-1;25518:14945:0;;36773:770;35942:1615;35916:1651;;25518:14945;;;;16407:1;25518:14945;;16407:1;25518:14945;;;;;16407:1;25518:14945;;16407:1;25518:14945;36773:770;25518:14945;16407:1;25518:14945;36798:25;25518:14945;;;;16407:1;25518:14945;;;37157:60;;;36773:770;37132:411;;;37276:7;25518:14945;37266:17;;25518:14945;;37132:411;36773:770;;25518:14945;;;;16407:1;25518:14945;;16407:1;25518:14945;37132:411;25518:14945;16407:1;25518:14945;37337:20;25518:14945;;;;16407:1;25518:14945;;;36773:770;37332:211;25518:14945;16407:1;25518:14945;13918:9;25518:14945;;37418:22;25518:14945;16407:1;25518:14945;;37418:22;;:::i;:::-;37444:9;25518:14945;-1:-1:-1;25518:14945:0;37132:411;25518:14945;;;;16407:1;25518:14945;;16407:1;25518:14945;37157:60;25518:14945;;16407:1;25518:14945;37191:20;25518:14945;;;;16407:1;25518:14945;;;37190:27;37157:60;;36798;25518:14945;;16407:1;25518:14945;36834:20;25518:14945;;;;16407:1;25518:14945;;;36833:25;36798:60;;36120:635;36183:15;-1:-1:-1;;;;;25518:14945:0;36169:30;;;;:53;;36120:635;36165:572;36120:635;36165:572;35355:9;16407:1;25518:14945;36287:28;25518:14945;;;16407:1;25518:14945;;;;36358:12;25518:14945;36358:12;;25518:14945;;;;36287:87;-1:-1:-1;36287:206:0;;;;36165:572;25518:14945;;;;35355:9;16407:1;25518:14945;36287:28;25518:14945;;36358:12;25518:14945;16407:1;25518:14945;;;16407:1;25518:14945;36287:28;25518:14945;;36358:12;25518:14945;16407:1;25518:14945;;36120:635;;25518:14945;;;;16407:1;25518:14945;;16407:1;25518:14945;36287:206;25518:14945;;;16407:1;25518:14945;36287:28;25518:14945;;;16407:1;25518:14945;;36410:83;36287:206;;;36169:53;-1:-1:-1;36209:13:0;-1:-1:-1;;;;;25518:14945:0;36203:19;;;36169:53;;35963:124;36069:18;25726:6;36069:18;;;35963:124;;:86;;36031:18;35963:86;;:48;35998:13;;;;;35963:48;;;35791:115;25518:14945;;16407:1;25518:14945;35851:20;25518:14945;;;;16407:1;25518:14945;;;35851:54;;;;35791:115;35849:57;35791:115;;35851:54;25518:14945;;16407:1;25518:14945;35851:20;25518:14945;;;;16407:1;25518:14945;;;35851:54;;35791:42;25518:14945;;;;;;35822:11;35791:42;;25518:14945;;;;16407:1;25518:14945;;16407:1;25518:14945;35629:100;25518:14945;;16407:1;25518:14945;35705:20;25518:14945;;;;16407:1;25518:14945;;;35629:100;;:56;25518:14945;;16407:1;25518:14945;35659:20;25518:14945;;;;16407:1;25518:14945;;;35629:56;;25518:14945;;;;16407:1;25518:14945;;16407:1;25518:14945;35508:52;35355:9;;16407:1;25518:14945;35384:5;25518:14945;;;;16407:1;25518:14945;;;35546:14;35508:52;;:34;35318:10;;35355:9;35526:16;35508:34;;35429:32;35318:10;;16407:1;25518:14945;35384:5;25518:14945;;;;16407:1;25518:14945;;;35447:14;35429:32;;16482:86;16525:32;;;16407:1;16525:32;16407:1;16525:32;25518:14945;;16407:1;16525:32;16387:86;16432:30;;;16407:1;16432:30;16407:1;16432:30;25518:14945;;16407:1;16432:30;39744:170;25518:14945;39876:31;39744:170;25518:14945;;;;;;;23629:6;25518:14945;39826:18;25518:14945;;;23629:6;25518:14945;;;;;;;;;;39876:31;25518:14945;;23629:6;25518:14945;;;;39876:31;39744:170::o;:::-;25518:14945;39876:31;39744:170;25518:14945;;;;;;;-1:-1:-1;25518:14945:0;39826:18;25518:14945;;;-1:-1:-1;25518:14945:0;30102:4;25518:14945;;;;;;;;;;39876:31;25518:14945;;30102:4;25518:14945;;;;39876:31;39744:170::o;25518:14945::-;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;16923:1137::-;-1:-1:-1;;;;;25518:14945:0;;17042:18;25518:14945;;;18028:25;25518:14945;17178:21;25518:14945;17178:21;25518:14945;17178:21;:::i;:::-;;25518:14945;17038:540;-1:-1:-1;;;;;25518:14945:0;;17592:16;25518:14945;;;17755:21;25518:14945;;17755:21;25518:14945;17588:425;25518:14945;;;;;18028:25;16923:1137::o;17588:425::-;25518:14945;17058:1;25518:14945;17966:9;25518:14945;;;17058:1;25518:14945;;;;;;;17588:425;;17038:540;25518:14945;17058:1;25518:14945;17252:9;25518:14945;;;17058:1;25518:14945;;17285:19;;;17281:115;;18028:25;25518:14945;;;;;17058:1;25518:14945;17252:9;25518:14945;;;;17058:1;25518:14945;;17038:540;;17281:115;17331:50;;;;;;17058:1;17331:50;;25518:14945;;;;;;17058:1;17331:50
Swarm Source
ipfs://f0b6128b7ed0edba6f0a4795f693eb3a8c289f8afcd32b0439e4a00e578d4aa0
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.