Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
8,682,945,239 SHARTAN
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
24,971,572.876273242123285162 SHARTANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x142b39af...1d8444900 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
SHARTAN
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-14 */ /* Fee Percentages 1. 6% Team wallet 2. 5% Raid wallet 3. 5% Reward Reflection (auto) total: 16% tg: https://t.me/shartans Supply 10,000,000,000 SPDX-License-Identifier: MIT */ pragma solidity ^0.8.4; /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @title SafeMathUint * @dev Math operations with safety checks that revert on error */ library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } library IterableMapping { // Iterable mapping from address to uint; struct Map { address[] keys; mapping(address => uint) values; mapping(address => uint) indexOf; mapping(address => bool) inserted; } function get(Map storage map, address key) public view returns (uint) { return map.values[key]; } function getIndexOfKey(Map storage map, address key) public view returns (int) { if(!map.inserted[key]) { return -1; } return int(map.indexOf[key]); } function getKeyAtIndex(Map storage map, uint index) public view returns (address) { return map.keys[index]; } function size(Map storage map) public view returns (uint) { return map.keys.length; } function set(Map storage map, address key, uint val) public { if (map.inserted[key]) { map.values[key] = val; } else { map.inserted[key] = true; map.values[key] = val; map.indexOf[key] = map.keys.length; map.keys.push(key); } } function remove(Map storage map, address key) public { if (!map.inserted[key]) { return; } delete map.inserted[key]; delete map.values[key]; uint index = map.indexOf[key]; uint lastIndex = map.keys.length - 1; address lastKey = map.keys[lastIndex]; map.indexOf[lastKey] = index; delete map.indexOf[key]; map.keys[index] = lastKey; map.keys.pop(); } } /// @title Dividend-Paying Token Optional Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev OPTIONAL functions for a dividend-paying token contract. interface DividendPayingTokenOptionalInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) external view returns(uint256); /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) external view returns(uint256); } /// @title Dividend-Paying Token Interface /// @author Roger Wu (https://github.com/roger-wu) /// @dev An interface for a dividend-paying token contract. interface DividendPayingTokenInterface { /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) external view returns(uint256); /// @notice Distributes ether to token holders as dividends. /// @dev SHOULD distribute the paid ether to token holders as dividends. /// SHOULD NOT directly transfer ether to token holders in this function. /// MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0. function distributeDividends() external payable; /// @notice Withdraws the ether distributed to the sender. /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer. /// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0. function withdrawDividend() external; /// @dev This event MUST emit when ether is distributed to token holders. /// @param from The address which sends ether to this contract. /// @param weiAmount The amount of distributed ether in wei. event DividendsDistributed( address indexed from, uint256 weiAmount ); /// @dev This event MUST emit when an address withdraws their dividend. /// @param to The address which withdraws ether from this contract. /// @param weiAmount The amount of withdrawn ether in wei. event DividendWithdrawn( address indexed to, uint256 weiAmount ); } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /// @title Dividend-Paying Token /// @author Roger Wu (https://github.com/roger-wu) /// @dev A mintable ERC20 token that allows anyone to pay and distribute ether /// to token holders as dividends and allows token holders to withdraw their dividends. /// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small. // For more discussion about choosing the value of `magnitude`, // see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728 uint256 constant internal magnitude = 2**128; uint256 internal magnifiedDividendPerShare; // About dividendCorrection: // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with: // `dividendOf(_user) = dividendPerShare * balanceOf(_user)`. // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens), // `dividendOf(_user)` should not be changed, // but the computed value of `dividendPerShare * balanceOf(_user)` is changed. // To keep the `dividendOf(_user)` unchanged, we add a correction term: // `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`, // where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed: // `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`. // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed. mapping(address => int256) internal magnifiedDividendCorrections; mapping(address => uint256) internal withdrawnDividends; uint256 public totalDividendsDistributed; constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) { } /// @dev Distributes dividends whenever ether is paid to this contract. receive() external payable { distributeDividends(); } /// @notice Distributes ether to token holders as dividends. /// @dev It reverts if the total supply of tokens is 0. /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0. /// About undistributed ether: /// In each distribution, there is a small amount of ether not distributed, /// the magnified amount of which is /// `(msg.value * magnitude) % totalSupply()`. /// With a well-chosen `magnitude`, the amount of undistributed ether /// (de-magnified) in a distribution can be less than 1 wei. /// We can actually keep track of the undistributed ether in a distribution /// and try to distribute it in the next distribution, /// but keeping track of such data on-chain costs much more than /// the saved ether, so we don't do that. function distributeDividends() public override payable { require(totalSupply() > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare.add( (msg.value).mul(magnitude) / totalSupply() ); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed = totalDividendsDistributed.add(msg.value); } } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function withdrawDividend() public virtual override { _withdrawDividendOfUser(payable(msg.sender)); } /// @notice Withdraws the ether distributed to the sender. /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0. function _withdrawDividendOfUser(address payable user) internal returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(user); if (_withdrawableDividend > 0) { withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend); emit DividendWithdrawn(user, _withdrawableDividend); (bool success,) = user.call{value: _withdrawableDividend, gas: 3000}(""); if(!success) { withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend); return 0; } return _withdrawableDividend; } return 0; } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function dividendOf(address _owner) public view override returns(uint256) { return withdrawableDividendOf(_owner); } /// @notice View the amount of dividend in wei that an address can withdraw. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` can withdraw. function withdrawableDividendOf(address _owner) public view override returns(uint256) { return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]); } /// @notice View the amount of dividend in wei that an address has withdrawn. /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has withdrawn. function withdrawnDividendOf(address _owner) public view override returns(uint256) { return withdrawnDividends[_owner]; } /// @notice View the amount of dividend in wei that an address has earned in total. /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner) /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude /// @param _owner The address of a token holder. /// @return The amount of dividend in wei that `_owner` has earned in total. function accumulativeDividendOf(address _owner) public view override returns(uint256) { return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe().add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude; } /// @dev Internal function that transfer tokens from one address to another. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param from The address to transfer from. /// @param to The address to transfer to. /// @param value The amount to be transferred. function _transfer(address from, address to, uint256 value) internal virtual override { require(false); int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe(); magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection); magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection); } /// @dev Internal function that mints tokens to an account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account that will receive the created tokens. /// @param value The amount that will be created. function _mint(address account, uint256 value) internal override { super._mint(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account].sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } /// @dev Internal function that burns an amount of the token of a given account. /// Update magnifiedDividendCorrections to keep dividends unchanged. /// @param account The account whose tokens will be burnt. /// @param value The amount that will be burnt. function _burn(address account, uint256 value) internal override { super._burn(account, value); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account].add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() ); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = balanceOf(account); if(newBalance > currentBalance) { uint256 mintAmount = newBalance.sub(currentBalance); _mint(account, mintAmount); } else if(newBalance < currentBalance) { uint256 burnAmount = currentBalance.sub(newBalance); _burn(account, burnAmount); } } } ///////// Uniswap Interfaces /////////// interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function getPair(address tokenA, address tokenB) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract SHARTAN is ERC20, Ownable { using SafeMath for uint256; using Address for address; uint256 private launchedAt; uint256 private _initialTotalSupply = 10**10 * 10**18; uint8 private _decimals = 18; uint256 private _maxTxAmount = 5 * 10**8 * 10**18; uint256 private _minSwapTokenAmount = 10**7 * 10 ** 18; // Fees 16% uint256 private _devFee = 60; // 6% Dev Fee uint256 private _raidFee = 50; // 5% Raid Fee uint256 private _rewardFee = 50; // 5% Reward Fee // uint256 private _initialSellTotalFee = 240; // 24% Total Fee: Reward + Dev + Raid //Addresses address private _devWalletAddress = 0xBE493264335B34B0219136e3e095aE419fAD495b; address private _raidWalletAddress = 0xcB62829a45EF72392d8a44CBD3582872f556CA5f; // Mappings mapping (address => bool) private _isExcludedFromFee; mapping(address => bool) private blacklist; // blacklist bool private buyCooldownEnabled = true; mapping(address => uint256) private boughtTimes; // could be subject to a maximum transfer amount mapping (address => bool) private automatedMarketMakerPairs; SHARTANDividendTracker public dividendTracker; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; // use by default 300,000 gas to process auto-claiming dividends uint256 public gasForProcessing = 300000; bool inSwapping; bool private swapAndLiquifyEnabled = true; bool private tradeEnabled = false; bool private sellCooldownEnabled = true; event SendDividends( uint256 tokensSwapped, uint256 amount ); event ProcessedDividendTracker( uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic, uint256 gas, address indexed processor ); event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress); event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); modifier lockTheSwap { inSwapping = true; _; inSwapping = false; } constructor () ERC20("SHARTAN INU", "SHARTAN") { launchedAt = block.timestamp; dividendTracker = new SHARTANDividendTracker(); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Uniswap router // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; _setAutomatedMarketMakerPair(uniswapV2Pair, true); //exclude owner, this contract, hero pool from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_devWalletAddress] = true; _isExcludedFromFee[_raidWalletAddress] = true; dividendTracker.excludeFromDividends(address(this)); _mint(owner(), _initialTotalSupply); } function updateDividendTracker(address newAddress) public onlyOwner { require(newAddress != address(dividendTracker), "SHARTAN: The dividend tracker already has that address"); SHARTANDividendTracker newDividendTracker = SHARTANDividendTracker(payable(newAddress)); require(newDividendTracker.owner() == address(this), "SHARTAN: The new dividend tracker must be owned by the SHARTAN token contract"); newDividendTracker.excludeFromDividends(address(newDividendTracker)); newDividendTracker.excludeFromDividends(address(this)); newDividendTracker.excludeFromDividends(address(uniswapV2Router)); emit UpdateDividendTracker(newAddress, address(dividendTracker)); dividendTracker = newDividendTracker; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setDevWallet(address account) public onlyOwner { _devWalletAddress = account; } function setRaidWallet(address account) public onlyOwner { _raidWalletAddress = account; } function setDevFeePercent(uint256 _percent) public onlyOwner { _devFee = _percent; } function setRaidFeePercent(uint256 _percent) public onlyOwner { _raidFee = _percent; } function setRewardFeePercent(uint256 _percent) public onlyOwner { _rewardFee = _percent; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { _maxTxAmount = _initialTotalSupply.mul(maxTxPercent).div( 10**4 ); } function setMinSwapTokenAmount(uint256 amount) external onlyOwner { _minSwapTokenAmount = amount; } function updateGasForProcessing(uint256 newValue) public onlyOwner { require(newValue >= 200000 && newValue <= 500000, "SHARTAN: gasForProcessing must be between 200,000 and 500,000"); require(newValue != gasForProcessing, "SHARTAN: Cannot update gasForProcessing to same value"); emit GasForProcessingUpdated(newValue, gasForProcessing); gasForProcessing = newValue; } function updateClaimWait(uint256 claimWait) external onlyOwner { dividendTracker.updateClaimWait(claimWait); } function getClaimWait() external view returns(uint256) { return dividendTracker.claimWait(); } function getTotalDividendsDistributed() external view returns (uint256) { return dividendTracker.totalDividendsDistributed(); } function withdrawableDividendOf(address account) public view returns(uint256) { return dividendTracker.withdrawableDividendOf(account); } function dividendTokenBalanceOf(address account) public view returns (uint256) { return dividendTracker.balanceOf(account); } function getAccountDividendsInfo(address account) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccount(account); } function getAccountDividendsInfoAtIndex(uint256 index) external view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { return dividendTracker.getAccountAtIndex(index); } function processDividendTracker(uint256 gas) external { (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas); emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin); } function claim() external { dividendTracker.processAccount(payable(msg.sender), false); } function getLastProcessedIndex() external view returns(uint256) { return dividendTracker.getLastProcessedIndex(); } function getNumberOfDividendTokenHolders() external view returns(uint256) { return dividendTracker.getNumberOfTokenHolders(); } function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function setTradeEnabled(bool _enabled) external onlyOwner { tradeEnabled = _enabled; } function setSellCooldownEnabled(bool _enabled) external onlyOwner { sellCooldownEnabled = _enabled; } function setBuyCooldownEnabled(bool _enabled) external onlyOwner { buyCooldownEnabled = _enabled; } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != uniswapV2Pair, "SHARTAN: The UniSwap pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require(automatedMarketMakerPairs[pair] != value, "SHARTAN: Automated market maker pair is already set to that value"); automatedMarketMakerPairs[pair] = value; if(value) { dividendTracker.excludeFromDividends(pair); } } function excludeFromBlacklist(address account) external onlyOwner() { require(blacklist[account], "Account is already excluded in blacklist"); blacklist[account] = false; } function includeInBlacklist(address account) external onlyOwner() { require(!blacklist[account], "Account is already included in blacklist"); blacklist[account] = true; } // to recieve ETH from uniswapV2Router when swaping receive() external payable {} function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function swapTokensForEth(uint256 tokenAmount) private { // generate the pancakeswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapAndSendFees(uint256 tokens) private lockTheSwap { swapTokensForEth(tokens); uint256 tokenBalance = address(this).balance; uint256 totalFees = _devFee.add(_raidFee).add(_rewardFee); uint256 devFee = tokenBalance.mul(_devFee).div(totalFees); (bool success1,) = address(_devWalletAddress).call{value: devFee}(""); require(success1, 'No success1'); uint256 raidFee = tokenBalance.mul(_raidFee).div(totalFees); (bool success2,) = address(_raidWalletAddress).call{value: raidFee}(""); require(success2, 'No success2'); uint256 dividends = tokenBalance.sub(devFee).sub(raidFee); (bool success,) = address(dividendTracker).call{value: dividends}(""); if(success) { emit SendDividends(tokens, dividends); } } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); require(!blacklist[from] && !blacklist[to], "Blacklist transaction"); } if (automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]) { require(tradeEnabled, "Trade is not enabled yet"); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is pancakeswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= _minSwapTokenAmount; if ( overMinTokenBalance && !inSwapping && !automatedMarketMakerPairs[from] && swapAndLiquifyEnabled ) { if (contractTokenBalance > _maxTxAmount) { contractTokenBalance = _maxTxAmount; } swapAndSendFees(contractTokenBalance); } // buy cooldown if (buyCooldownEnabled && automatedMarketMakerPairs[from]) { require((boughtTimes[from] + 15 minutes) < block.timestamp, "Wait 15 minutes to buy another"); boughtTimes[from] = block.timestamp; } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } if(takeFee) { uint256 totalFees = _devFee.add(_raidFee).add(_rewardFee); // Sell Fee(24%) for first 2 days if (sellCooldownEnabled && automatedMarketMakerPairs[to] && (launchedAt + 2 days) > block.timestamp) { totalFees = totalFees.mul(15).div(10); // 1.5 times 24% } uint256 fees = amount.div(1000).mul(totalFees); amount = amount.sub(fees); super._transfer(from, address(this), fees); } super._transfer(from, to, amount); try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {} try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {} if(!inSwapping) { uint256 gas = gasForProcessing; try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) { emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin); } catch {} } } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } } contract SHARTANDividendTracker is DividendPayingToken, Ownable { using SafeMath for uint256; using SafeMathInt for int256; using IterableMapping for IterableMapping.Map; IterableMapping.Map private tokenHoldersMap; uint256 public lastProcessedIndex; mapping (address => bool) public excludedFromDividends; mapping (address => uint256) public lastClaimTimes; uint256 public claimWait; uint256 public immutable minimumTokenBalanceForDividends; event ExcludeFromDividends(address indexed account); event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue); event Claim(address indexed account, uint256 amount, bool indexed automatic); constructor() DividendPayingToken("SHARTAN_Dividend_Tracker", "SHARTAN_Dividend_Tracker") { claimWait = 3600; minimumTokenBalanceForDividends = 10**2 * (10**18); //must hold 40,000+ tokens } function _transfer(address, address, uint256) internal pure override { require(false, "SHARTAN_Dividend_Tracker: No transfers allowed"); } function withdrawDividend() public pure override { require(false, "SHARTAN_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main SHARTAN contract."); } function excludeFromDividends(address account) external onlyOwner { require(!excludedFromDividends[account]); excludedFromDividends[account] = true; _setBalance(account, 0); tokenHoldersMap.remove(account); emit ExcludeFromDividends(account); } function updateClaimWait(uint256 newClaimWait) external onlyOwner { require(newClaimWait >= 3600 && newClaimWait <= 86400, "SHARTAN_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours"); require(newClaimWait != claimWait, "SHARTAN_Dividend_Tracker: Cannot update claimWait to same value"); emit ClaimWaitUpdated(newClaimWait, claimWait); claimWait = newClaimWait; } function getLastProcessedIndex() external view returns(uint256) { return lastProcessedIndex; } function getNumberOfTokenHolders() external view returns(uint256) { return tokenHoldersMap.keys.length; } function getAccount(address _account) public view returns ( address account, int256 index, int256 iterationsUntilProcessed, uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime, uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) { account = _account; index = tokenHoldersMap.getIndexOfKey(account); iterationsUntilProcessed = -1; if(index >= 0) { if(uint256(index) > lastProcessedIndex) { iterationsUntilProcessed = index.sub(int256(lastProcessedIndex)); } else { uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ? tokenHoldersMap.keys.length.sub(lastProcessedIndex) : 0; iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray)); } } withdrawableDividends = withdrawableDividendOf(account); totalDividends = accumulativeDividendOf(account); lastClaimTime = lastClaimTimes[account]; nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0; secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0; } function getAccountAtIndex(uint256 index) public view returns ( address, int256, int256, uint256, uint256, uint256, uint256, uint256) { if(index >= tokenHoldersMap.size()) { return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0); } address account = tokenHoldersMap.getKeyAtIndex(index); return getAccount(account); } function canAutoClaim(uint256 lastClaimTime) private view returns (bool) { if(lastClaimTime > block.timestamp) { return false; } return block.timestamp.sub(lastClaimTime) >= claimWait; } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if(excludedFromDividends[account]) { return; } if(newBalance >= minimumTokenBalanceForDividends) { _setBalance(account, newBalance); tokenHoldersMap.set(account, newBalance); } else { _setBalance(account, 0); tokenHoldersMap.remove(account); } processAccount(account, true); } function process(uint256 gas) public returns (uint256, uint256, uint256) { uint256 numberOfTokenHolders = tokenHoldersMap.keys.length; if(numberOfTokenHolders == 0) { return (0, 0, lastProcessedIndex); } uint256 _lastProcessedIndex = lastProcessedIndex; uint256 gasUsed = 0; uint256 gasLeft = gasleft(); uint256 iterations = 0; uint256 claims = 0; while(gasUsed < gas && iterations < numberOfTokenHolders) { _lastProcessedIndex++; if(_lastProcessedIndex >= tokenHoldersMap.keys.length) { _lastProcessedIndex = 0; } address account = tokenHoldersMap.keys[_lastProcessedIndex]; if(canAutoClaim(lastClaimTimes[account])) { if(processAccount(payable(account), true)) { claims++; } } iterations++; uint256 newGasLeft = gasleft(); if(gasLeft > newGasLeft) { gasUsed = gasUsed.add(gasLeft.sub(newGasLeft)); } gasLeft = newGasLeft; } lastProcessedIndex = _lastProcessedIndex; return (iterations, claims, lastProcessedIndex); } function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if(amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount, automatic); return true; } return false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract SHARTANDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setBuyCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setDevFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinSwapTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setRaidFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setRaidWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setRewardFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSellCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTradeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526b204fce5e3e2502611000000060075560088054601260ff1991821681179092556b019d971e4fe8401e740000006009556a084595161401484a000000600a55603c600b556032600c819055600d55600e805473be493264335b34b0219136e3e095ae419fad495b6001600160a01b031991821617909155600f805473cb62829a45ef72392d8a44cbd3582872f556ca5f92169190911790558154166001179055620493e06018556019805463ffffff0019166301000100179055348015620000cc57600080fd5b50604080518082018252600b81526a5348415254414e20494e5560a81b60208083019182528351808501909452600784526629a420a92a20a760c91b9084015281519192916200011f9160039162000713565b5080516200013590600490602084019062000713565b505050620001526200014c6200048e60201b60201c565b62000492565b426006556040516200016490620007a2565b604051809103906000f08015801562000181573d6000803e3d6000fd5b50601560006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001fb57600080fd5b505afa15801562000210573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002369190620007c7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027f57600080fd5b505afa15801562000294573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ba9190620007c7565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200030357600080fd5b505af115801562000318573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033e9190620007c7565b601780546001600160a01b039283166001600160a01b031991821681179092556016805493851693909116929092179091556200037d906001620004e4565b600160106000620003966005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308082526010909452828120805486166001908117909155600e54831682528382208054871682179055600f548316825290839020805490951617909355601554905163031e79db60e41b81529216916331e79db09162000436916004016001600160a01b0391909116815260200190565b600060405180830381600087803b1580156200045157600080fd5b505af115801562000466573d6000803e3d6000fd5b50505050620004876200047e6200061d60201b60201c565b6007546200062c565b5062000859565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620005895760405162461bcd60e51b815260206004820152604160248201527f5348415254414e3a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a4015b60405180910390fd5b6001600160a01b0382166000908152601460205260409020805460ff19168215801591909117909155620006195760155460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db090602401600060405180830381600087803b158015620005ff57600080fd5b505af115801562000614573d6000803e3d6000fd5b505050505b5050565b6005546001600160a01b031690565b6001600160a01b038216620006845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000580565b8060026000828254620006989190620007f7565b90915550506001600160a01b03821660009081526020819052604081208054839290620006c7908490620007f7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a362000619565b82805462000721906200081c565b90600052602060002090601f01602090048101928262000745576000855562000790565b82601f106200076057805160ff191683800117855562000790565b8280016001018555821562000790579182015b828111156200079057825182559160200191906001019062000773565b506200079e929150620007b0565b5090565b6121ca806200382383390190565b5b808211156200079e5760008155600101620007b1565b600060208284031215620007d9578081fd5b81516001600160a01b0381168114620007f0578182fd5b9392505050565b600082198211156200081757634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200083157607f821691505b602082108114156200085357634e487b7160e01b600052602260045260246000fd5b50919050565b612fba80620008696000396000f3fe60806040526004361061028c5760003560e01c8063871c128d1161015a578063acaf4a80116100c1578063e7841ec01161007a578063e7841ec014610834578063e98030c714610849578063ea2f0b3714610869578063f27fd25414610889578063f2fde38b146108a9578063fee98cc6146108c957600080fd5b8063acaf4a8014610709578063ad56c13c14610729578063c49b9a801461078e578063d543dbeb146107ae578063dd62ed3e146107ce578063e069eca01461081457600080fd5b80639c1b8af5116101135780639c1b8af51461065e578063a26579ad14610674578063a45230f314610689578063a457c2d7146106a9578063a8b9d240146106c9578063a9059cbb146106e957600080fd5b8063871c128d146105ab57806388bb012a146105cb57806388bdd9be146105eb5780638da5cb5b1461060b57806395d89b41146106295780639a7a23d61461063e57600080fd5b806342966c68116101fe5780636843cd84116101b75780636843cd84146104e05780636bebaf9714610500578063700bb1911461052057806370a0823114610540578063715018a6146105765780637dfbe7dd1461058b57600080fd5b806342966c681461041d578063437823ec1461043d5780634e71d92d1461045d5780635342acb41461047257806356c2c6be146104ab57806364b0f653146104cb57600080fd5b80632c1f5216116102505780632c1f52161461035457806330bb4cff1461038c578063313ce567146103a1578063379e2919146103bd57806339509351146103dd5780633bec2bf3146103fd57600080fd5b806306fdde0314610298578063095ea7b3146102c357806318160ddd146102f35780631f53ac021461031257806323b872dd1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad6108e9565b6040516102ba9190612d22565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612c62565b61097b565b60405190151581526020016102ba565b3480156102ff57600080fd5b506002545b6040519081526020016102ba565b34801561031e57600080fd5b5061033261032d366004612b1c565b610991565b005b34801561034057600080fd5b506102e361034f366004612b8c565b6109e6565b34801561036057600080fd5b50601554610374906001600160a01b031681565b6040516001600160a01b0390911681526020016102ba565b34801561039857600080fd5b50610304610a90565b3480156103ad57600080fd5b50604051601281526020016102ba565b3480156103c957600080fd5b506103326103d8366004612cc5565b610b12565b3480156103e957600080fd5b506102e36103f8366004612c62565b610b41565b34801561040957600080fd5b50610332610418366004612c8d565b610b7d565b34801561042957600080fd5b50610332610438366004612cc5565b610bc3565b34801561044957600080fd5b50610332610458366004612b1c565b610bd0565b34801561046957600080fd5b50610332610c1e565b34801561047e57600080fd5b506102e361048d366004612b1c565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156104b757600080fd5b506103326104c6366004612c8d565b610ca2565b3480156104d757600080fd5b50610304610cdf565b3480156104ec57600080fd5b506103046104fb366004612b1c565b610d24565b34801561050c57600080fd5b5061033261051b366004612cc5565b610da9565b34801561052c57600080fd5b5061033261053b366004612cc5565b610dd8565b34801561054c57600080fd5b5061030461055b366004612b1c565b6001600160a01b031660009081526020819052604090205490565b34801561058257600080fd5b50610332610eba565b34801561059757600080fd5b506103326105a6366004612cc5565b610ef0565b3480156105b757600080fd5b506103326105c6366004612cc5565b610f1f565b3480156105d757600080fd5b506103326105e6366004612b1c565b611074565b3480156105f757600080fd5b50610332610606366004612b1c565b61113c565b34801561061757600080fd5b506005546001600160a01b0316610374565b34801561063557600080fd5b506102ad611466565b34801561064a57600080fd5b50610332610659366004612bcc565b611475565b34801561066a57600080fd5b5061030460185481565b34801561068057600080fd5b50610304611544565b34801561069557600080fd5b506103326106a4366004612b1c565b611589565b3480156106b557600080fd5b506102e36106c4366004612c62565b6115d5565b3480156106d557600080fd5b506103046106e4366004612b1c565b61166e565b3480156106f557600080fd5b506102e3610704366004612c62565b6116a1565b34801561071557600080fd5b50610332610724366004612c8d565b6116ae565b34801561073557600080fd5b50610749610744366004612b1c565b6116f6565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016102ba565b34801561079a57600080fd5b506103326107a9366004612c8d565b6117a0565b3480156107ba57600080fd5b506103326107c9366004612cc5565b61181e565b3480156107da57600080fd5b506103046107e9366004612b54565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082057600080fd5b5061033261082f366004612cc5565b61186f565b34801561084057600080fd5b5061030461189e565b34801561085557600080fd5b50610332610864366004612cc5565b6118e3565b34801561087557600080fd5b50610332610884366004612b1c565b61196e565b34801561089557600080fd5b506107496108a4366004612cc5565b6119b9565b3480156108b557600080fd5b506103326108c4366004612b1c565b6119fb565b3480156108d557600080fd5b506103326108e4366004612b1c565b611a93565b6060600380546108f890612f10565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612f10565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b6000610988338484611b57565b50600192915050565b6005546001600160a01b031633146109c45760405162461bcd60e51b81526004016109bb90612db8565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006109f3848484611c7c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a785760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109bb565b610a858533858403611b57565b506001949350505050565b601554604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610ad557600080fd5b505afa158015610ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0d9190612cdd565b905090565b6005546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016109bb90612db8565b600b55565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610988918590610b78908690612ea2565b611b57565b6005546001600160a01b03163314610ba75760405162461bcd60e51b81526004016109bb90612db8565b60198054911515620100000262ff000019909216919091179055565b610bcd3382612334565b50565b6005546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b60155460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610c6a57600080fd5b505af1158015610c7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcd9190612ca9565b6005546001600160a01b03163314610ccc5760405162461bcd60e51b81526004016109bb90612db8565b6012805460ff1916911515919091179055565b601554604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610ad557600080fd5b6015546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610d6b57600080fd5b505afa158015610d7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da39190612cdd565b92915050565b6005546001600160a01b03163314610dd35760405162461bcd60e51b81526004016109bb90612db8565b600d55565b6015546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b158015610e2657600080fd5b505af1158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e9190612cf5565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b03163314610ee45760405162461bcd60e51b81526004016109bb90612db8565b610eee600061247a565b565b6005546001600160a01b03163314610f1a5760405162461bcd60e51b81526004016109bb90612db8565b600c55565b6005546001600160a01b03163314610f495760405162461bcd60e51b81526004016109bb90612db8565b62030d408110158015610f5f57506207a1208111155b610fd15760405162461bcd60e51b815260206004820152603d60248201527f5348415254414e3a20676173466f7250726f63657373696e67206d757374206260448201527f65206265747765656e203230302c30303020616e64203530302c30303000000060648201526084016109bb565b6018548114156110415760405162461bcd60e51b815260206004820152603560248201527f5348415254414e3a2043616e6e6f742075706461746520676173466f7250726f60448201527463657373696e6720746f2073616d652076616c756560581b60648201526084016109bb565b60185460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601855565b6005546001600160a01b0316331461109e5760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03811660009081526011602052604090205460ff16156111185760405162461bcd60e51b815260206004820152602860248201527f4163636f756e7420697320616c726561647920696e636c7564656420696e20626044820152671b1858dadb1a5cdd60c21b60648201526084016109bb565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6005546001600160a01b031633146111665760405162461bcd60e51b81526004016109bb90612db8565b6015546001600160a01b03828116911614156111e35760405162461bcd60e51b815260206004820152603660248201527f5348415254414e3a20546865206469766964656e6420747261636b657220616c6044820152757265616479206861732074686174206164647265737360501b60648201526084016109bb565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561122b57600080fd5b505afa15801561123f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112639190612b38565b6001600160a01b0316146112f55760405162461bcd60e51b815260206004820152604d60248201527f5348415254414e3a20546865206e6577206469766964656e6420747261636b6560448201527f72206d757374206265206f776e656420627920746865205348415254414e207460648201526c1bdad95b8818dbdb9d1c9858dd609a1b608482015260a4016109bb565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b15801561139057600080fd5b505af11580156113a4573d6000803e3d6000fd5b505060165460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156113ef57600080fd5b505af1158015611403573d6000803e3d6000fd5b50506015546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3601580546001600160a01b0319166001600160a01b039290921691909117905550565b6060600480546108f890612f10565b6005546001600160a01b0316331461149f5760405162461bcd60e51b81526004016109bb90612db8565b6017546001600160a01b03838116911614156115365760405162461bcd60e51b815260206004820152604a60248201527f5348415254414e3a2054686520556e695377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a4016109bb565b61154082826124cc565b5050565b60155460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610ad557600080fd5b6005546001600160a01b031633146115b35760405162461bcd60e51b81526004016109bb90612db8565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116575760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109bb565b6116643385858403611b57565b5060019392505050565b6015546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610d53565b6000610988338484611c7c565b6005546001600160a01b031633146116d85760405162461bcd60e51b81526004016109bb90612db8565b6019805491151563010000000263ff00000019909216919091179055565b60155460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b15801561174d57600080fd5b505afa158015611761573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117859190612bf9565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b031633146117ca5760405162461bcd60e51b81526004016109bb90612db8565b601980548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061181390831515815260200190565b60405180910390a150565b6005546001600160a01b031633146118485760405162461bcd60e51b81526004016109bb90612db8565b611869612710611863836007546125f490919063ffffffff16565b90612607565b60095550565b6005546001600160a01b031633146118995760405162461bcd60e51b81526004016109bb90612db8565b600a55565b6015546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610ad557600080fd5b6005546001600160a01b0316331461190d5760405162461bcd60e51b81526004016109bb90612db8565b60155460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401600060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b5050505050565b6005546001600160a01b031633146119985760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03166000908152601060205260409020805460ff19169055565b601554604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611734565b6005546001600160a01b03163314611a255760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b038116611a8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bb565b610bcd8161247a565b6005546001600160a01b03163314611abd5760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03811660009081526011602052604090205460ff16611b365760405162461bcd60e51b815260206004820152602860248201527f4163636f756e7420697320616c7265616479206578636c7564656420696e20626044820152671b1858dadb1a5cdd60c21b60648201526084016109bb565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6001600160a01b038316611bb95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109bb565b6001600160a01b038216611c1a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109bb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611ca25760405162461bcd60e51b81526004016109bb90612ded565b6001600160a01b038216611cc85760405162461bcd60e51b81526004016109bb90612d75565b60008111611d2a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109bb565b6005546001600160a01b03848116911614801590611d5657506005546001600160a01b03838116911614155b15611e4457600954811115611dbe5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109bb565b6001600160a01b03831660009081526011602052604090205460ff16158015611e0057506001600160a01b03821660009081526011602052604090205460ff16155b611e445760405162461bcd60e51b8152602060048201526015602482015274213630b1b5b634b9ba103a3930b739b0b1ba34b7b760591b60448201526064016109bb565b6001600160a01b03831660009081526014602052604090205460ff1680611e8357506001600160a01b03821660009081526014602052604090205460ff165b15611ee05760195462010000900460ff16611ee05760405162461bcd60e51b815260206004820152601860248201527f5472616465206973206e6f7420656e61626c656420796574000000000000000060448201526064016109bb565b30600090815260208190526040902054600a5481108015908190611f07575060195460ff16155b8015611f2c57506001600160a01b03851660009081526014602052604090205460ff16155b8015611f3f5750601954610100900460ff165b15611f5d57600954821115611f545760095491505b611f5d82612613565b60125460ff168015611f8757506001600160a01b03851660009081526014602052604090205460ff165b1561201c576001600160a01b0385166000908152601360205260409020544290611fb390610384612ea2565b106120005760405162461bcd60e51b815260206004820152601e60248201527f57616974203135206d696e7574657320746f2062757920616e6f74686572000060448201526064016109bb565b6001600160a01b03851660009081526013602052604090204290555b6001600160a01b03851660009081526010602052604090205460019060ff168061205e57506001600160a01b03851660009081526010602052604090205460ff165b15612067575060005b801561212d576000612092600d5461208c600c54600b5461286e90919063ffffffff16565b9061286e565b6019549091506301000000900460ff1680156120c657506001600160a01b03861660009081526014602052604090205460ff165b80156120e15750426006546202a3006120df9190612ea2565b115b156120f9576120f6600a61186383600f6125f4565b90505b60006121118261210b886103e8612607565b906125f4565b905061211d868261287a565b955061212a883083612886565b50505b612138868686612886565b6015546001600160a01b031663e30443bc87612169816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156121af57600080fd5b505af19250505080156121c0575060015b506015546001600160a01b031663e30443bc866121f2816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561223857600080fd5b505af1925050508015612249575060015b5060195460ff1661232c576018546015546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b1580156122a057600080fd5b505af19250505080156122d0575060408051601f3d908101601f191682019092526122cd91810190612cf5565b60015b6122d95761232a565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b6001600160a01b0382166123945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109bb565b6001600160a01b038216600090815260208190526040902054818110156124085760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109bb565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612437908490612ef9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611c6f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526014602052604090205460ff161515811515141561256b5760405162461bcd60e51b815260206004820152604160248201527f5348415254414e3a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a4016109bb565b6001600160a01b0382166000908152601460205260409020805460ff191682158015919091179091556115405760155460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db0906024015b600060405180830381600087803b1580156125e057600080fd5b505af115801561232c573d6000803e3d6000fd5b60006126008284612eda565b9392505050565b60006126008284612eba565b6019805460ff19166001179055612629816129cd565b600d54600c54600b5447926000926126449261208c9161286e565b9050600061266182611863600b54866125f490919063ffffffff16565b600e546040519192506000916001600160a01b039091169083908381818185875af1925050503d80600081146126b3576040519150601f19603f3d011682016040523d82523d6000602084013e6126b8565b606091505b50509050806126f75760405162461bcd60e51b815260206004820152600b60248201526a4e6f20737563636573733160a81b60448201526064016109bb565b600061271284611863600c54886125f490919063ffffffff16565b600f546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114612764576040519150601f19603f3d011682016040523d82523d6000602084013e612769565b606091505b50509050806127a85760405162461bcd60e51b815260206004820152600b60248201526a27379039bab1b1b2b9b99960a91b60448201526064016109bb565b60006127be836127b8898861287a565b9061287a565b6015546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114612810576040519150601f19603f3d011682016040523d82523d6000602084013e612815565b606091505b50509050801561285957604080518a8152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a15b50506019805460ff1916905550505050505050565b60006126008284612ea2565b60006126008284612ef9565b6001600160a01b0383166128ac5760405162461bcd60e51b81526004016109bb90612ded565b6001600160a01b0382166128d25760405162461bcd60e51b81526004016109bb90612d75565b6001600160a01b0383166000908152602081905260409020548181101561294a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109bb565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612981908490612ea2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eac91815260200190565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a1057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a6457600080fd5b505afa158015612a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9c9190612b38565b81600181518110612abd57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601654612ae39130911684611b57565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac947906125c6908590600090869030904290600401612e32565b600060208284031215612b2d578081fd5b813561260081612f61565b600060208284031215612b49578081fd5b815161260081612f61565b60008060408385031215612b66578081fd5b8235612b7181612f61565b91506020830135612b8181612f61565b809150509250929050565b600080600060608486031215612ba0578081fd5b8335612bab81612f61565b92506020840135612bbb81612f61565b929592945050506040919091013590565b60008060408385031215612bde578182fd5b8235612be981612f61565b91506020830135612b8181612f76565b600080600080600080600080610100898b031215612c15578384fd5b8851612c2081612f61565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612c74578182fd5b8235612c7f81612f61565b946020939093013593505050565b600060208284031215612c9e578081fd5b813561260081612f76565b600060208284031215612cba578081fd5b815161260081612f76565b600060208284031215612cd6578081fd5b5035919050565b600060208284031215612cee578081fd5b5051919050565b600080600060608486031215612d09578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612d4e57858101830151858201604001528201612d32565b81811115612d5f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612e815784516001600160a01b031683529383019391830191600101612e5c565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612eb557612eb5612f4b565b500190565b600082612ed557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612ef457612ef4612f4b565b500290565b600082821015612f0b57612f0b612f4b565b500390565b600181811c90821680612f2457607f821691505b60208210811415612f4557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bcd57600080fd5b8015158114610bcd57600080fdfea26469706673582212209021d3817e31a6d3c2f6ede2cf9a9c88d39583560836a2cb1c59a8e4b448766464736f6c6343000804003360a06040523480156200001157600080fd5b5060408051808201825260188082527f5348415254414e5f4469766964656e645f547261636b65720000000000000000602080840182815285518087019096529285528401528151919291839183916200006e9160039162000112565b5080516200008490600490602084019062000112565b5050505050620000a36200009d620000bc60201b60201c565b620000c0565b610e1060115568056bc75e2d63100000608052620001f5565b3390565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611fb262000218600039600081816105d80152610ef30152611fb26000f3fe6080604052600436106102085760003560e01c8063715018a611610118578063bc4c4b37116100a0578063e7841ec01161006f578063e7841ec014610660578063e98030c714610675578063f2fde38b14610695578063fbcbc0f1146106b5578063ffb2c479146106d557600080fd5b8063bc4c4b37146105a6578063be10b614146105c6578063dd62ed3e146105fa578063e30443bc1461064057600080fd5b806395d89b41116100e757806395d89b41146104fb578063a457c2d714610510578063a8b9d24014610530578063a9059cbb14610550578063aafd847a1461057057600080fd5b8063715018a61461048857806385a6b3ae1461049d5780638da5cb5b146104b357806391b89fba146104db57600080fd5b80633009a6091161019b5780634e7b827f1161016a5780634e7b827f146103925780635183d6fd146103c25780636a474002146104275780636f2789ec1461043c57806370a082311461045257600080fd5b80633009a60914610320578063313ce5671461033657806331e79db014610352578063395093511461037257600080fd5b806318160ddd116101d757806318160ddd1461029e578063226cfa3d146102b357806323b872dd146102e057806327ce01471461030057600080fd5b806303c833021461021c57806306fdde0314610224578063095ea7b31461024f57806309bbedde1461027f57600080fd5b3661021757610215610710565b005b600080fd5b610215610710565b34801561023057600080fd5b506102396107a3565b6040516102469190611d85565b60405180910390f35b34801561025b57600080fd5b5061026f61026a366004611cbd565b610835565b6040519015158152602001610246565b34801561028b57600080fd5b50600a545b604051908152602001610246565b3480156102aa57600080fd5b50600254610290565b3480156102bf57600080fd5b506102906102ce366004611c49565b60106020526000908152604090205481565b3480156102ec57600080fd5b5061026f6102fb366004611d15565b61084c565b34801561030c57600080fd5b5061029061031b366004611c49565b6108fb565b34801561032c57600080fd5b50610290600e5481565b34801561034257600080fd5b5060405160128152602001610246565b34801561035e57600080fd5b5061021561036d366004611c49565b610957565b34801561037e57600080fd5b5061026f61038d366004611cbd565b610a7e565b34801561039e57600080fd5b5061026f6103ad366004611c49565b600f6020526000908152604090205460ff1681565b3480156103ce57600080fd5b506103e26103dd366004611d6d565b610aba565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610246565b34801561043357600080fd5b50610215610c2c565b34801561044857600080fd5b5061029060115481565b34801561045e57600080fd5b5061029061046d366004611c49565b6001600160a01b031660009081526020819052604090205490565b34801561049457600080fd5b50610215610cd4565b3480156104a957600080fd5b5061029060085481565b3480156104bf57600080fd5b506009546040516001600160a01b039091168152602001610246565b3480156104e757600080fd5b506102906104f6366004611c49565b610d08565b34801561050757600080fd5b50610239610d13565b34801561051c57600080fd5b5061026f61052b366004611cbd565b610d22565b34801561053c57600080fd5b5061029061054b366004611c49565b610dbb565b34801561055c57600080fd5b5061026f61056b366004611cbd565b610de7565b34801561057c57600080fd5b5061029061058b366004611c49565b6001600160a01b031660009081526007602052604090205490565b3480156105b257600080fd5b5061026f6105c1366004611c81565b610df4565b3480156105d257600080fd5b506102907f000000000000000000000000000000000000000000000000000000000000000081565b34801561060657600080fd5b50610290610615366004611ce8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561064c57600080fd5b5061021561065b366004611cbd565b610ea2565b34801561066c57600080fd5b50600e54610290565b34801561068157600080fd5b50610215610690366004611d6d565b61102f565b3480156106a157600080fd5b506102156106b0366004611c49565b6111a1565b3480156106c157600080fd5b506103e26106d0366004611c49565b61123c565b3480156106e157600080fd5b506106f56106f0366004611d6d565b6113b4565b60408051938452602084019290925290820152606001610246565b600061071b60025490565b1161072557600080fd5b34156107a15761075861073760025490565b61074534600160801b6114dd565b61074f9190611e66565b600554906114f0565b60055560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a260085461079d90346114f0565b6008555b565b6060600380546107b290611efb565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90611efb565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b5050505050905090565b60006108423384846114fc565b5060015b92915050565b6000610859848484611620565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108e35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108f085338584036114fc565b506001949350505050565b6001600160a01b03811660009081526006602090815260408083205491839052822054600554600160801b9261094d92610948926109429161093d91906114dd565b61167f565b9061168f565b6116cd565b6108469190611e66565b6009546001600160a01b031633146109815760405162461bcd60e51b81526004016108da90611dd8565b6001600160a01b0381166000908152600f602052604090205460ff16156109a757600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff191660011790556109d59082906116e0565b60405163131836e760e21b8152600a60048201526001600160a01b038216602482015273ca6944c9d06e9a5c1e758c3b82a8b5b4ad60a4a690634c60db9c9060440160006040518083038186803b158015610a2f57600080fd5b505af4158015610a43573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610842918590610ab5908690611e4e565b6114fc565b600080600080600080600080600a73ca6944c9d06e9a5c1e758c3b82a8b5b4ad60a4a663deb3d89690916040518263ffffffff1660e01b8152600401610b0291815260200190565b60206040518083038186803b158015610b1a57600080fd5b505af4158015610b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b529190611d55565b8910610b77575060009650600019955085945086935083925082915081905080610c21565b6040516368d54f3f60e11b8152600a6004820152602481018a905260009073ca6944c9d06e9a5c1e758c3b82a8b5b4ad60a4a69063d1aa9e7e9060440160206040518083038186803b158015610bcc57600080fd5b505af4158015610be0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c049190611c65565b9050610c0f8161123c565b98509850985098509850985098509850505b919395975091939597565b60405162461bcd60e51b815260206004820152606b60248201527f5348415254414e5f4469766964656e645f547261636b65723a2077697468647260448201527f61774469766964656e642064697361626c65642e20557365207468652027636c60648201527f61696d272066756e6374696f6e206f6e20746865206d61696e2053484152544160848201526a271031b7b73a3930b1ba1760a91b60a482015260c4016108da565b6009546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016108da90611dd8565b6107a16000611745565b600061084682610dbb565b6060600480546107b290611efb565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610da45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108da565b610db133858584036114fc565b5060019392505050565b6001600160a01b03811660009081526007602052604081205461084690610de1846108fb565b90611797565b6000610842338484611620565b6009546000906001600160a01b03163314610e215760405162461bcd60e51b81526004016108da90611dd8565b6000610e2c846117a3565b90508015610e98576001600160a01b038416600081815260106020526040908190204290555184151591907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09290610e869085815260200190565b60405180910390a36001915050610846565b5060009392505050565b6009546001600160a01b03163314610ecc5760405162461bcd60e51b81526004016108da90611dd8565b6001600160a01b0382166000908152600f602052604090205460ff1615610ef1575050565b7f00000000000000000000000000000000000000000000000000000000000000008110610fa057610f2282826116e0565b604051632f0ad01760e21b8152600a60048201526001600160a01b03831660248201526044810182905273ca6944c9d06e9a5c1e758c3b82a8b5b4ad60a4a69063bc2b405c9060640160006040518083038186803b158015610f8357600080fd5b505af4158015610f97573d6000803e3d6000fd5b5050505061101e565b610fab8260006116e0565b60405163131836e760e21b8152600a60048201526001600160a01b038316602482015273ca6944c9d06e9a5c1e758c3b82a8b5b4ad60a4a690634c60db9c9060440160006040518083038186803b15801561100557600080fd5b505af4158015611019573d6000803e3d6000fd5b505050505b611029826001610df4565b505b5050565b6009546001600160a01b031633146110595760405162461bcd60e51b81526004016108da90611dd8565b610e10811015801561106e5750620151808111155b6110f65760405162461bcd60e51b815260206004820152604d60248201527f5348415254414e5f4469766964656e645f547261636b65723a20636c61696d5760448201527f616974206d757374206265207570646174656420746f206265747765656e203160648201526c20616e6420323420686f75727360981b608482015260a4016108da565b60115481141561116e5760405162461bcd60e51b815260206004820152603f60248201527f5348415254414e5f4469766964656e645f547261636b65723a2043616e6e6f7460448201527f2075706461746520636c61696d5761697420746f2073616d652076616c75650060648201526084016108da565b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6009546001600160a01b031633146111cb5760405162461bcd60e51b81526004016108da90611dd8565b6001600160a01b0381166112305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108da565b61123981611745565b50565b6040516317e142d160e01b8152600a60048201526001600160a01b0382166024820152819060009081908190819081908190819073ca6944c9d06e9a5c1e758c3b82a8b5b4ad60a4a6906317e142d19060440160206040518083038186803b1580156112a757600080fd5b505af41580156112bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112df9190611d55565b965060001995506000871261134157600e5487111561130d57600e546113069088906118e9565b9550611341565b600e54600a5460009110611322576000611331565b600e54600a5461133191611797565b905061133d888261168f565b9650505b61134a88610dbb565b9450611355886108fb565b6001600160a01b03891660009081526010602052604090205490945092508261137f57600061138d565b60115461138d9084906114f0565b915042821161139d5760006113a7565b6113a78242611797565b9050919395975091939597565b600a5460009081908190806113d4575050600e54600092508291506114d6565b600e546000805a90506000805b89841080156113ef57508582105b156114c557846113fe81611f36565b600a549096508610905061141157600094505b6000600a600001868154811061143757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316808352601090915260409091205490915061146890611926565b1561148b57611478816001610df4565b1561148b578161148781611f36565b9250505b8261149581611f36565b93505060005a9050808511156114bc576114b96114b28683611797565b87906114f0565b95505b93506113e19050565b600e85905590975095509193505050505b9193909250565b60006114e98284611e86565b9392505050565b60006114e98284611e4e565b6001600160a01b03831661155e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108da565b6001600160a01b0382166115bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108da565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152602e60248201527f5348415254414e5f4469766964656e645f547261636b65723a204e6f2074726160448201526d1b9cd9995c9cc8185b1b1bddd95960921b60648201526084016108da565b6000818181121561084657600080fd5b60008061169c8385611e0d565b9050600083121580156116af5750838112155b806116c457506000831280156116c457508381125b6114e957600080fd5b6000808212156116dc57600080fd5b5090565b6001600160a01b0382166000908152602081905260409020548082111561171f57600061170d8383611797565b9050611719848261194d565b50611029565b808210156110295760006117338284611797565b905061173f84826119b1565b50505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114e98284611ee4565b6000806117af83610dbb565b905080156118e0576001600160a01b0383166000908152600760205260409020546117da90826114f0565b6001600160a01b038416600081815260076020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906118299084815260200190565b60405180910390a26000836001600160a01b031682610bb890604051600060405180830381858888f193505050503d8060008114611883576040519150601f19603f3d011682016040523d82523d6000602084013e611888565b606091505b50509050806118d9576001600160a01b0384166000908152600760205260409020546118b49083611797565b6001600160a01b03909416600090815260076020526040812094909455509192915050565b5092915050565b50600092915050565b6000806118f68385611ea5565b9050600083121580156119095750838113155b806116c457506000831280156116c457508381136114e957600080fd5b60004282111561193857506000919050565b6011546119454284611797565b101592915050565b61195782826119f5565b61199161197261093d836005546114dd90919063ffffffff16565b6001600160a01b038416600090815260066020526040902054906118e9565b6001600160a01b0390921660009081526006602052604090209190915550565b6119bb8282611ae8565b6119916119d661093d836005546114dd90919063ffffffff16565b6001600160a01b0384166000908152600660205260409020549061168f565b6001600160a01b038216611a4b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108da565b611a5760008383611029565b8060026000828254611a699190611e4e565b90915550506001600160a01b03821660009081526020819052604081208054839290611a96908490611e4e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361102b60008383611029565b6001600160a01b038216611b485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108da565b611b5482600083611029565b6001600160a01b03821660009081526020819052604090205481811015611bc85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108da565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611bf7908490611ee4565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361102983600084611029565b600060208284031215611c5a578081fd5b81356114e981611f67565b600060208284031215611c76578081fd5b81516114e981611f67565b60008060408385031215611c93578081fd5b8235611c9e81611f67565b915060208301358015158114611cb2578182fd5b809150509250929050565b60008060408385031215611ccf578182fd5b8235611cda81611f67565b946020939093013593505050565b60008060408385031215611cfa578182fd5b8235611d0581611f67565b91506020830135611cb281611f67565b600080600060608486031215611d29578081fd5b8335611d3481611f67565b92506020840135611d4481611f67565b929592945050506040919091013590565b600060208284031215611d66578081fd5b5051919050565b600060208284031215611d7e578081fd5b5035919050565b6000602080835283518082850152825b81811015611db157858101830151858201604001528201611d95565b81811115611dc25783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600080821280156001600160ff1b0384900385131615611e2f57611e2f611f51565b600160ff1b8390038412811615611e4857611e48611f51565b50500190565b60008219821115611e6157611e61611f51565b500190565b600082611e8157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611ea057611ea0611f51565b500290565b60008083128015600160ff1b850184121615611ec357611ec3611f51565b6001600160ff1b0384018313811615611ede57611ede611f51565b50500390565b600082821015611ef657611ef6611f51565b500390565b600181811c90821680611f0f57607f821691505b60208210811415611f3057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f4a57611f4a611f51565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461123957600080fdfea2646970667358221220760ab5a5fb4929b7d58106361ef564e116a79ee8516c1d09bbbed129725fe54164736f6c63430008040033
Deployed Bytecode
0x60806040526004361061028c5760003560e01c8063871c128d1161015a578063acaf4a80116100c1578063e7841ec01161007a578063e7841ec014610834578063e98030c714610849578063ea2f0b3714610869578063f27fd25414610889578063f2fde38b146108a9578063fee98cc6146108c957600080fd5b8063acaf4a8014610709578063ad56c13c14610729578063c49b9a801461078e578063d543dbeb146107ae578063dd62ed3e146107ce578063e069eca01461081457600080fd5b80639c1b8af5116101135780639c1b8af51461065e578063a26579ad14610674578063a45230f314610689578063a457c2d7146106a9578063a8b9d240146106c9578063a9059cbb146106e957600080fd5b8063871c128d146105ab57806388bb012a146105cb57806388bdd9be146105eb5780638da5cb5b1461060b57806395d89b41146106295780639a7a23d61461063e57600080fd5b806342966c68116101fe5780636843cd84116101b75780636843cd84146104e05780636bebaf9714610500578063700bb1911461052057806370a0823114610540578063715018a6146105765780637dfbe7dd1461058b57600080fd5b806342966c681461041d578063437823ec1461043d5780634e71d92d1461045d5780635342acb41461047257806356c2c6be146104ab57806364b0f653146104cb57600080fd5b80632c1f5216116102505780632c1f52161461035457806330bb4cff1461038c578063313ce567146103a1578063379e2919146103bd57806339509351146103dd5780633bec2bf3146103fd57600080fd5b806306fdde0314610298578063095ea7b3146102c357806318160ddd146102f35780631f53ac021461031257806323b872dd1461033457600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad6108e9565b6040516102ba9190612d22565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612c62565b61097b565b60405190151581526020016102ba565b3480156102ff57600080fd5b506002545b6040519081526020016102ba565b34801561031e57600080fd5b5061033261032d366004612b1c565b610991565b005b34801561034057600080fd5b506102e361034f366004612b8c565b6109e6565b34801561036057600080fd5b50601554610374906001600160a01b031681565b6040516001600160a01b0390911681526020016102ba565b34801561039857600080fd5b50610304610a90565b3480156103ad57600080fd5b50604051601281526020016102ba565b3480156103c957600080fd5b506103326103d8366004612cc5565b610b12565b3480156103e957600080fd5b506102e36103f8366004612c62565b610b41565b34801561040957600080fd5b50610332610418366004612c8d565b610b7d565b34801561042957600080fd5b50610332610438366004612cc5565b610bc3565b34801561044957600080fd5b50610332610458366004612b1c565b610bd0565b34801561046957600080fd5b50610332610c1e565b34801561047e57600080fd5b506102e361048d366004612b1c565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156104b757600080fd5b506103326104c6366004612c8d565b610ca2565b3480156104d757600080fd5b50610304610cdf565b3480156104ec57600080fd5b506103046104fb366004612b1c565b610d24565b34801561050c57600080fd5b5061033261051b366004612cc5565b610da9565b34801561052c57600080fd5b5061033261053b366004612cc5565b610dd8565b34801561054c57600080fd5b5061030461055b366004612b1c565b6001600160a01b031660009081526020819052604090205490565b34801561058257600080fd5b50610332610eba565b34801561059757600080fd5b506103326105a6366004612cc5565b610ef0565b3480156105b757600080fd5b506103326105c6366004612cc5565b610f1f565b3480156105d757600080fd5b506103326105e6366004612b1c565b611074565b3480156105f757600080fd5b50610332610606366004612b1c565b61113c565b34801561061757600080fd5b506005546001600160a01b0316610374565b34801561063557600080fd5b506102ad611466565b34801561064a57600080fd5b50610332610659366004612bcc565b611475565b34801561066a57600080fd5b5061030460185481565b34801561068057600080fd5b50610304611544565b34801561069557600080fd5b506103326106a4366004612b1c565b611589565b3480156106b557600080fd5b506102e36106c4366004612c62565b6115d5565b3480156106d557600080fd5b506103046106e4366004612b1c565b61166e565b3480156106f557600080fd5b506102e3610704366004612c62565b6116a1565b34801561071557600080fd5b50610332610724366004612c8d565b6116ae565b34801561073557600080fd5b50610749610744366004612b1c565b6116f6565b604080516001600160a01b0390991689526020890197909752958701949094526060860192909252608085015260a084015260c083015260e0820152610100016102ba565b34801561079a57600080fd5b506103326107a9366004612c8d565b6117a0565b3480156107ba57600080fd5b506103326107c9366004612cc5565b61181e565b3480156107da57600080fd5b506103046107e9366004612b54565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082057600080fd5b5061033261082f366004612cc5565b61186f565b34801561084057600080fd5b5061030461189e565b34801561085557600080fd5b50610332610864366004612cc5565b6118e3565b34801561087557600080fd5b50610332610884366004612b1c565b61196e565b34801561089557600080fd5b506107496108a4366004612cc5565b6119b9565b3480156108b557600080fd5b506103326108c4366004612b1c565b6119fb565b3480156108d557600080fd5b506103326108e4366004612b1c565b611a93565b6060600380546108f890612f10565b80601f016020809104026020016040519081016040528092919081815260200182805461092490612f10565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b5050505050905090565b6000610988338484611b57565b50600192915050565b6005546001600160a01b031633146109c45760405162461bcd60e51b81526004016109bb90612db8565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006109f3848484611c7c565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a785760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016109bb565b610a858533858403611b57565b506001949350505050565b601554604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b158015610ad557600080fd5b505afa158015610ae9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0d9190612cdd565b905090565b6005546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016109bb90612db8565b600b55565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610988918590610b78908690612ea2565b611b57565b6005546001600160a01b03163314610ba75760405162461bcd60e51b81526004016109bb90612db8565b60198054911515620100000262ff000019909216919091179055565b610bcd3382612334565b50565b6005546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03166000908152601060205260409020805460ff19166001179055565b60155460405163bc4c4b3760e01b8152336004820152600060248201526001600160a01b039091169063bc4c4b3790604401602060405180830381600087803b158015610c6a57600080fd5b505af1158015610c7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bcd9190612ca9565b6005546001600160a01b03163314610ccc5760405162461bcd60e51b81526004016109bb90612db8565b6012805460ff1916911515919091179055565b601554604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b158015610ad557600080fd5b6015546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b60206040518083038186803b158015610d6b57600080fd5b505afa158015610d7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da39190612cdd565b92915050565b6005546001600160a01b03163314610dd35760405162461bcd60e51b81526004016109bb90612db8565b600d55565b6015546040516001624d3b8760e01b0319815260048101839052600091829182916001600160a01b03169063ffb2c47990602401606060405180830381600087803b158015610e2657600080fd5b505af1158015610e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5e9190612cf5565b604080518481526020810184905290810182905260608101889052929550909350915032906000907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a98906080015b60405180910390a350505050565b6005546001600160a01b03163314610ee45760405162461bcd60e51b81526004016109bb90612db8565b610eee600061247a565b565b6005546001600160a01b03163314610f1a5760405162461bcd60e51b81526004016109bb90612db8565b600c55565b6005546001600160a01b03163314610f495760405162461bcd60e51b81526004016109bb90612db8565b62030d408110158015610f5f57506207a1208111155b610fd15760405162461bcd60e51b815260206004820152603d60248201527f5348415254414e3a20676173466f7250726f63657373696e67206d757374206260448201527f65206265747765656e203230302c30303020616e64203530302c30303000000060648201526084016109bb565b6018548114156110415760405162461bcd60e51b815260206004820152603560248201527f5348415254414e3a2043616e6e6f742075706461746520676173466f7250726f60448201527463657373696e6720746f2073616d652076616c756560581b60648201526084016109bb565b60185460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601855565b6005546001600160a01b0316331461109e5760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03811660009081526011602052604090205460ff16156111185760405162461bcd60e51b815260206004820152602860248201527f4163636f756e7420697320616c726561647920696e636c7564656420696e20626044820152671b1858dadb1a5cdd60c21b60648201526084016109bb565b6001600160a01b03166000908152601160205260409020805460ff19166001179055565b6005546001600160a01b031633146111665760405162461bcd60e51b81526004016109bb90612db8565b6015546001600160a01b03828116911614156111e35760405162461bcd60e51b815260206004820152603660248201527f5348415254414e3a20546865206469766964656e6420747261636b657220616c6044820152757265616479206861732074686174206164647265737360501b60648201526084016109bb565b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561122b57600080fd5b505afa15801561123f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112639190612b38565b6001600160a01b0316146112f55760405162461bcd60e51b815260206004820152604d60248201527f5348415254414e3a20546865206e6577206469766964656e6420747261636b6560448201527f72206d757374206265206f776e656420627920746865205348415254414e207460648201526c1bdad95b8818dbdb9d1c9858dd609a1b608482015260a4016109bb565b60405163031e79db60e41b81526001600160a01b03821660048201819052906331e79db090602401600060405180830381600087803b15801561133757600080fd5b505af115801561134b573d6000803e3d6000fd5b505060405163031e79db60e41b81523060048201526001600160a01b03841692506331e79db09150602401600060405180830381600087803b15801561139057600080fd5b505af11580156113a4573d6000803e3d6000fd5b505060165460405163031e79db60e41b81526001600160a01b03918216600482015290841692506331e79db09150602401600060405180830381600087803b1580156113ef57600080fd5b505af1158015611403573d6000803e3d6000fd5b50506015546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3601580546001600160a01b0319166001600160a01b039290921691909117905550565b6060600480546108f890612f10565b6005546001600160a01b0316331461149f5760405162461bcd60e51b81526004016109bb90612db8565b6017546001600160a01b03838116911614156115365760405162461bcd60e51b815260206004820152604a60248201527f5348415254414e3a2054686520556e695377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a4016109bb565b61154082826124cc565b5050565b60155460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b158015610ad557600080fd5b6005546001600160a01b031633146115b35760405162461bcd60e51b81526004016109bb90612db8565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156116575760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109bb565b6116643385858403611b57565b5060019392505050565b6015546040516302a2e74960e61b81526001600160a01b038381166004830152600092169063a8b9d24090602401610d53565b6000610988338484611c7c565b6005546001600160a01b031633146116d85760405162461bcd60e51b81526004016109bb90612db8565b6019805491151563010000000263ff00000019909216919091179055565b60155460405163fbcbc0f160e01b81526001600160a01b038381166004830152600092839283928392839283928392839291169063fbcbc0f1906024015b6101006040518083038186803b15801561174d57600080fd5b505afa158015611761573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117859190612bf9565b97509750975097509750975097509750919395975091939597565b6005546001600160a01b031633146117ca5760405162461bcd60e51b81526004016109bb90612db8565b601980548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061181390831515815260200190565b60405180910390a150565b6005546001600160a01b031633146118485760405162461bcd60e51b81526004016109bb90612db8565b611869612710611863836007546125f490919063ffffffff16565b90612607565b60095550565b6005546001600160a01b031633146118995760405162461bcd60e51b81526004016109bb90612db8565b600a55565b6015546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b158015610ad557600080fd5b6005546001600160a01b0316331461190d5760405162461bcd60e51b81526004016109bb90612db8565b60155460405163e98030c760e01b8152600481018390526001600160a01b039091169063e98030c790602401600060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b5050505050565b6005546001600160a01b031633146119985760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03166000908152601060205260409020805460ff19169055565b601554604051635183d6fd60e01b81526004810183905260009182918291829182918291829182916001600160a01b0390911690635183d6fd90602401611734565b6005546001600160a01b03163314611a255760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b038116611a8a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bb565b610bcd8161247a565b6005546001600160a01b03163314611abd5760405162461bcd60e51b81526004016109bb90612db8565b6001600160a01b03811660009081526011602052604090205460ff16611b365760405162461bcd60e51b815260206004820152602860248201527f4163636f756e7420697320616c7265616479206578636c7564656420696e20626044820152671b1858dadb1a5cdd60c21b60648201526084016109bb565b6001600160a01b03166000908152601160205260409020805460ff19169055565b6001600160a01b038316611bb95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109bb565b6001600160a01b038216611c1a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109bb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316611ca25760405162461bcd60e51b81526004016109bb90612ded565b6001600160a01b038216611cc85760405162461bcd60e51b81526004016109bb90612d75565b60008111611d2a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016109bb565b6005546001600160a01b03848116911614801590611d5657506005546001600160a01b03838116911614155b15611e4457600954811115611dbe5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016109bb565b6001600160a01b03831660009081526011602052604090205460ff16158015611e0057506001600160a01b03821660009081526011602052604090205460ff16155b611e445760405162461bcd60e51b8152602060048201526015602482015274213630b1b5b634b9ba103a3930b739b0b1ba34b7b760591b60448201526064016109bb565b6001600160a01b03831660009081526014602052604090205460ff1680611e8357506001600160a01b03821660009081526014602052604090205460ff165b15611ee05760195462010000900460ff16611ee05760405162461bcd60e51b815260206004820152601860248201527f5472616465206973206e6f7420656e61626c656420796574000000000000000060448201526064016109bb565b30600090815260208190526040902054600a5481108015908190611f07575060195460ff16155b8015611f2c57506001600160a01b03851660009081526014602052604090205460ff16155b8015611f3f5750601954610100900460ff165b15611f5d57600954821115611f545760095491505b611f5d82612613565b60125460ff168015611f8757506001600160a01b03851660009081526014602052604090205460ff165b1561201c576001600160a01b0385166000908152601360205260409020544290611fb390610384612ea2565b106120005760405162461bcd60e51b815260206004820152601e60248201527f57616974203135206d696e7574657320746f2062757920616e6f74686572000060448201526064016109bb565b6001600160a01b03851660009081526013602052604090204290555b6001600160a01b03851660009081526010602052604090205460019060ff168061205e57506001600160a01b03851660009081526010602052604090205460ff165b15612067575060005b801561212d576000612092600d5461208c600c54600b5461286e90919063ffffffff16565b9061286e565b6019549091506301000000900460ff1680156120c657506001600160a01b03861660009081526014602052604090205460ff165b80156120e15750426006546202a3006120df9190612ea2565b115b156120f9576120f6600a61186383600f6125f4565b90505b60006121118261210b886103e8612607565b906125f4565b905061211d868261287a565b955061212a883083612886565b50505b612138868686612886565b6015546001600160a01b031663e30443bc87612169816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156121af57600080fd5b505af19250505080156121c0575060015b506015546001600160a01b031663e30443bc866121f2816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561223857600080fd5b505af1925050508015612249575060015b5060195460ff1661232c576018546015546040516001624d3b8760e01b03198152600481018390526001600160a01b039091169063ffb2c47990602401606060405180830381600087803b1580156122a057600080fd5b505af19250505080156122d0575060408051601f3d908101601f191682019092526122cd91810190612cf5565b60015b6122d95761232a565b60408051848152602081018490529081018290526060810185905232906001907fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989060800160405180910390a35050505b505b505050505050565b6001600160a01b0382166123945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016109bb565b6001600160a01b038216600090815260208190526040902054818110156124085760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016109bb565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612437908490612ef9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001611c6f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526014602052604090205460ff161515811515141561256b5760405162461bcd60e51b815260206004820152604160248201527f5348415254414e3a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a4016109bb565b6001600160a01b0382166000908152601460205260409020805460ff191682158015919091179091556115405760155460405163031e79db60e41b81526001600160a01b038481166004830152909116906331e79db0906024015b600060405180830381600087803b1580156125e057600080fd5b505af115801561232c573d6000803e3d6000fd5b60006126008284612eda565b9392505050565b60006126008284612eba565b6019805460ff19166001179055612629816129cd565b600d54600c54600b5447926000926126449261208c9161286e565b9050600061266182611863600b54866125f490919063ffffffff16565b600e546040519192506000916001600160a01b039091169083908381818185875af1925050503d80600081146126b3576040519150601f19603f3d011682016040523d82523d6000602084013e6126b8565b606091505b50509050806126f75760405162461bcd60e51b815260206004820152600b60248201526a4e6f20737563636573733160a81b60448201526064016109bb565b600061271284611863600c54886125f490919063ffffffff16565b600f546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114612764576040519150601f19603f3d011682016040523d82523d6000602084013e612769565b606091505b50509050806127a85760405162461bcd60e51b815260206004820152600b60248201526a27379039bab1b1b2b9b99960a91b60448201526064016109bb565b60006127be836127b8898861287a565b9061287a565b6015546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114612810576040519150601f19603f3d011682016040523d82523d6000602084013e612815565b606091505b50509050801561285957604080518a8152602081018490527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a15b50506019805460ff1916905550505050505050565b60006126008284612ea2565b60006126008284612ef9565b6001600160a01b0383166128ac5760405162461bcd60e51b81526004016109bb90612ded565b6001600160a01b0382166128d25760405162461bcd60e51b81526004016109bb90612d75565b6001600160a01b0383166000908152602081905260409020548181101561294a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109bb565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612981908490612ea2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eac91815260200190565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a1057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a6457600080fd5b505afa158015612a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a9c9190612b38565b81600181518110612abd57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601654612ae39130911684611b57565b60165460405163791ac94760e01b81526001600160a01b039091169063791ac947906125c6908590600090869030904290600401612e32565b600060208284031215612b2d578081fd5b813561260081612f61565b600060208284031215612b49578081fd5b815161260081612f61565b60008060408385031215612b66578081fd5b8235612b7181612f61565b91506020830135612b8181612f61565b809150509250929050565b600080600060608486031215612ba0578081fd5b8335612bab81612f61565b92506020840135612bbb81612f61565b929592945050506040919091013590565b60008060408385031215612bde578182fd5b8235612be981612f61565b91506020830135612b8181612f76565b600080600080600080600080610100898b031215612c15578384fd5b8851612c2081612f61565b809850506020890151965060408901519550606089015194506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b60008060408385031215612c74578182fd5b8235612c7f81612f61565b946020939093013593505050565b600060208284031215612c9e578081fd5b813561260081612f76565b600060208284031215612cba578081fd5b815161260081612f76565b600060208284031215612cd6578081fd5b5035919050565b600060208284031215612cee578081fd5b5051919050565b600080600060608486031215612d09578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015612d4e57858101830151858201604001528201612d32565b81811115612d5f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015612e815784516001600160a01b031683529383019391830191600101612e5c565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612eb557612eb5612f4b565b500190565b600082612ed557634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612ef457612ef4612f4b565b500290565b600082821015612f0b57612f0b612f4b565b500390565b600181811c90821680612f2457607f821691505b60208210811415612f4557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610bcd57600080fd5b8015158114610bcd57600080fdfea26469706673582212209021d3817e31a6d3c2f6ede2cf9a9c88d39583560836a2cb1c59a8e4b448766464736f6c63430008040033
Deployed Bytecode Sourcemap
50475:14626:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30198:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32365:169;;;;;;;;;;-1:-1:-1;32365:169:0;;;;;:::i;:::-;;:::i;:::-;;;5959:14:1;;5952:22;5934:41;;5922:2;5907:18;32365:169:0;5889:92:1;31318:108:0;;;;;;;;;;-1:-1:-1;31406:12:0;;31318:108;;;17497:25:1;;;17485:2;17470:18;31318:108:0;17452:76:1;55119:102:0;;;;;;;;;;-1:-1:-1;55119:102:0;;;;;:::i;:::-;;:::i;:::-;;33016:492;;;;;;;;;;-1:-1:-1;33016:492:0;;;;;:::i;:::-;;:::i;51746:45::-;;;;;;;;;;-1:-1:-1;51746:45:0;;;;-1:-1:-1;;;;;51746:45:0;;;;;;-1:-1:-1;;;;;4444:32:1;;;4426:51;;4414:2;4399:18;51746:45:0;4381:102:1;56637:141:0;;;;;;;;;;;;;:::i;31160:93::-;;;;;;;;;;-1:-1:-1;31160:93:0;;31243:2;19312:36:1;;19300:2;19285:18;31160:93:0;19267:87:1;55341:98:0;;;;;;;;;;-1:-1:-1;55341:98:0;;;;;:::i;:::-;;:::i;33917:215::-;;;;;;;;;;-1:-1:-1;33917:215:0;;;;;:::i;:::-;;:::i;58617:101::-;;;;;;;;;;-1:-1:-1;58617:101:0;;;;;:::i;:::-;;:::i;65015:83::-;;;;;;;;;;-1:-1:-1;65015:83:0;;;;;:::i;:::-;;:::i;54882:111::-;;;;;;;;;;-1:-1:-1;54882:111:0;;;;;:::i;:::-;;:::i;58037:103::-;;;;;;;;;;;;;:::i;60097:123::-;;;;;;;;;;-1:-1:-1;60097:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;60185:27:0;60161:4;60185:27;;;:18;:27;;;;;;;;;60097:123;58849:113;;;;;;;;;;-1:-1:-1;58849:113:0;;;;;:::i;:::-;;:::i;58287:141::-;;;;;;;;;;;;;:::i;56946:139::-;;;;;;;;;;-1:-1:-1;56946:139:0;;;;;:::i;:::-;;:::i;55555:104::-;;;;;;;;;;-1:-1:-1;55555:104:0;;;;;:::i;:::-;;:::i;57757:271::-;;;;;;;;;;-1:-1:-1;57757:271:0;;;;;:::i;:::-;;:::i;31489:127::-;;;;;;;;;;-1:-1:-1;31489:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;31590:18:0;31563:7;31590:18;;;;;;;;;;;;31489:127;2541:94;;;;;;;;;;;;;:::i;55447:100::-;;;;;;;;;;-1:-1:-1;55447:100:0;;;;;:::i;:::-;;:::i;55968:410::-;;;;;;;;;;-1:-1:-1;55968:410:0;;;;;:::i;:::-;;:::i;59802:193::-;;;;;;;;;;-1:-1:-1;59802:193:0;;;;;:::i;:::-;;:::i;54083:791::-;;;;;;;;;;-1:-1:-1;54083:791:0;;;;;:::i;:::-;;:::i;1890:87::-;;;;;;;;;;-1:-1:-1;1963:6:0;;-1:-1:-1;;;;;1963:6:0;1890:87;;30417:104;;;;;;;;;;;;;:::i;58970:263::-;;;;;;;;;;-1:-1:-1;58970:263:0;;;;;:::i;:::-;;:::i;51957:40::-;;;;;;;;;;;;;;;;56520:108;;;;;;;;;;;;;:::i;55229:104::-;;;;;;;;;;-1:-1:-1;55229:104:0;;;;;:::i;:::-;;:::i;34635:413::-;;;;;;;;;;-1:-1:-1;34635:413:0;;;;;:::i;:::-;;:::i;56786:151::-;;;;;;;;;;-1:-1:-1;56786:151:0;;;;;:::i;:::-;;:::i;31829:175::-;;;;;;;;;;-1:-1:-1;31829:175:0;;;;;:::i;:::-;;:::i;58726:115::-;;;;;;;;;;-1:-1:-1;58726:115:0;;;;;:::i;:::-;;:::i;57094:318::-;;;;;;;;;;-1:-1:-1;57094:318:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5445:32:1;;;5427:51;;5509:2;5494:18;;5487:34;;;;5537:18;;;5530:34;;;;5595:2;5580:18;;5573:34;;;;5638:3;5623:19;;5616:35;5465:3;5667:19;;5660:35;5726:3;5711:19;;5704:35;5770:3;5755:19;;5748:35;5414:3;5399:19;57094:318:0;5381:408:1;58436:173:0;;;;;;;;;;-1:-1:-1;58436:173:0;;;;;:::i;:::-;;:::i;55667:172::-;;;;;;;;;;-1:-1:-1;55667:172:0;;;;;:::i;:::-;;:::i;32067:151::-;;;;;;;;;;-1:-1:-1;32067:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;32183:18:0;;;32156:7;32183:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;32067:151;55847:113;;;;;;;;;;-1:-1:-1;55847:113:0;;;;;:::i;:::-;;:::i;58149:129::-;;;;;;;;;;;;;:::i;56387:124::-;;;;;;;;;;-1:-1:-1;56387:124:0;;;;;:::i;:::-;;:::i;55001:110::-;;;;;;;;;;-1:-1:-1;55001:110:0;;;;;:::i;:::-;;:::i;57420:328::-;;;;;;;;;;-1:-1:-1;57420:328:0;;;;;:::i;:::-;;:::i;2790:192::-;;;;;;;;;;-1:-1:-1;2790:192:0;;;;;:::i;:::-;;:::i;59599:195::-;;;;;;;;;;-1:-1:-1;59599:195:0;;;;;:::i;:::-;;:::i;30198:100::-;30252:13;30285:5;30278:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30198:100;:::o;32365:169::-;32448:4;32465:39;846:10;32488:7;32497:6;32465:8;:39::i;:::-;-1:-1:-1;32522:4:0;32365:169;;;;:::o;55119:102::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;;;;;;;;;55186:17:::1;:27:::0;;-1:-1:-1;;;;;;55186:27:0::1;-1:-1:-1::0;;;;;55186:27:0;;;::::1;::::0;;;::::1;::::0;;55119:102::o;33016:492::-;33156:4;33173:36;33183:6;33191:9;33202:6;33173:9;:36::i;:::-;-1:-1:-1;;;;;33249:19:0;;33222:24;33249:19;;;:11;:19;;;;;;;;846:10;33249:33;;;;;;;;33301:26;;;;33293:79;;;;-1:-1:-1;;;33293:79:0;;12731:2:1;33293:79:0;;;12713:21:1;12770:2;12750:18;;;12743:30;12809:34;12789:18;;;12782:62;-1:-1:-1;;;12860:18:1;;;12853:38;12908:19;;33293:79:0;12703:230:1;33293:79:0;33408:57;33417:6;846:10;33458:6;33439:16;:25;33408:8;:57::i;:::-;-1:-1:-1;33496:4:0;;33016:492;-1:-1:-1;;;;33016:492:0:o;56637:141::-;56727:15;;:43;;;-1:-1:-1;;;56727:43:0;;;;56700:7;;-1:-1:-1;;;;;56727:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56720:50;;56637:141;:::o;55341:98::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;55413:7:::1;:18:::0;55341:98::o;33917:215::-;846:10;34005:4;34054:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34054:34:0;;;;;;;;;;34005:4;;34022:80;;34045:7;;34054:47;;34091:10;;34054:47;:::i;:::-;34022:8;:80::i;58617:101::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;58687:12:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58687:23:0;;::::1;::::0;;;::::1;::::0;;58617:101::o;65015:83::-;65063:27;846:10;65083:6;65063:5;:27::i;:::-;65015:83;:::o;54882:111::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54951:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;54951:34:0::1;54981:4;54951:34;::::0;;54882:111::o;58037:103::-;58074:15;;:58;;-1:-1:-1;;;58074:58:0;;58113:10;58074:58;;;4672:51:1;58074:15:0;4739:18:1;;;4732:50;-1:-1:-1;;;;;58074:15:0;;;;:30;;4645:18:1;;58074:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;58849:113::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;58925:18:::1;:29:::0;;-1:-1:-1;;58925:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58849:113::o;58287:141::-;58379:15;;:41;;;-1:-1:-1;;;58379:41:0;;;;58352:7;;-1:-1:-1;;;;;58379:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;56946:139;57043:15;;:34;;-1:-1:-1;;;57043:34:0;;-1:-1:-1;;;;;4444:32:1;;;57043:34:0;;;4426:51:1;57016:7:0;;57043:15;;:25;;4399:18:1;;57043:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57036:41;56946:139;-1:-1:-1;;56946:139:0:o;55555:104::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;55630:10:::1;:21:::0;55555:104::o;57757:271::-;57889:15;;:28;;-1:-1:-1;;;;;;57889:28:0;;;;;17497:25:1;;;57823:18:0;;;;;;-1:-1:-1;;;;;57889:15:0;;:23;;17470:18:1;;57889:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57933:87;;;19005:25:1;;;19061:2;19046:18;;19039:34;;;19089:18;;;19082:34;;;19147:2;19132:18;;19125:34;;;57822:95:0;;-1:-1:-1;57822:95:0;;-1:-1:-1;57822:95:0;-1:-1:-1;58010:9:0;;57998:5;;57933:87;;18992:3:1;18977:19;57933:87:0;;;;;;;;57757:271;;;;:::o;2541:94::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;2606:21:::1;2624:1;2606:9;:21::i;:::-;2541:94::o:0;55447:100::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;55520:8:::1;:19:::0;55447:100::o;55968:410::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;56066:6:::1;56054:8;:18;;:40;;;;;56088:6;56076:8;:18;;56054:40;56046:114;;;::::0;-1:-1:-1;;;56046:114:0;;11418:2:1;56046:114:0::1;::::0;::::1;11400:21:1::0;11457:2;11437:18;;;11430:30;11496:34;11476:18;;;11469:62;11567:31;11547:18;;;11540:59;11616:19;;56046:114:0::1;11390:251:1::0;56046:114:0::1;56191:16;;56179:8;:28;;56171:94;;;::::0;-1:-1:-1;;;56171:94:0;;16366:2:1;56171:94:0::1;::::0;::::1;16348:21:1::0;16405:2;16385:18;;;16378:30;16444:34;16424:18;;;16417:62;-1:-1:-1;;;16495:18:1;;;16488:51;16556:19;;56171:94:0::1;16338:243:1::0;56171:94:0::1;56315:16;::::0;56281:51:::1;::::0;56305:8;;56281:51:::1;::::0;;;::::1;56343:16;:27:::0;55968:410::o;59802:193::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59888:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;59887:19;59879:72;;;::::0;-1:-1:-1;;;59879:72:0;;12322:2:1;59879:72:0::1;::::0;::::1;12304:21:1::0;12361:2;12341:18;;;12334:30;12400:34;12380:18;;;12373:62;-1:-1:-1;;;12451:18:1;;;12444:38;12499:19;;59879:72:0::1;12294:230:1::0;59879:72:0::1;-1:-1:-1::0;;;;;59962:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;59962:25:0::1;59983:4;59962:25;::::0;;59802:193::o;54083:791::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;54192:15:::1;::::0;-1:-1:-1;;;;;54170:38:0;;::::1;54192:15:::0;::::1;54170:38;;54162:105;;;::::0;-1:-1:-1;;;54162:105:0;;9029:2:1;54162:105:0::1;::::0;::::1;9011:21:1::0;9068:2;9048:18;;;9041:30;9107:34;9087:18;;;9080:62;-1:-1:-1;;;9158:18:1;;;9151:52;9220:19;;54162:105:0::1;9001:244:1::0;54162:105:0::1;54281:41;54356:10;54281:87;;54428:4;-1:-1:-1::0;;;;;54390:43:0::1;:18;-1:-1:-1::0;;;;;54390:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54390:43:0::1;;54382:133;;;::::0;-1:-1:-1;;;54382:133:0;;8543:2:1;54382:133:0::1;::::0;::::1;8525:21:1::0;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;8692:34;8672:18;;;8665:62;-1:-1:-1;;;8743:19:1;;;8736:44;8797:19;;54382:133:0::1;8515:307:1::0;54382:133:0::1;54529:68;::::0;-1:-1:-1;;;54529:68:0;;-1:-1:-1;;;;;54529:39:0;::::1;:68;::::0;::::1;4426:51:1::0;;;54529:39:0;::::1;::::0;4399:18:1;;54529:68:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54608:54:0::1;::::0;-1:-1:-1;;;54608:54:0;;54656:4:::1;54608:54;::::0;::::1;4426:51:1::0;-1:-1:-1;;;;;54608:39:0;::::1;::::0;-1:-1:-1;54608:39:0::1;::::0;-1:-1:-1;4399:18:1;;54608:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54721:15:0::1;::::0;54673:65:::1;::::0;-1:-1:-1;;;54673:65:0;;-1:-1:-1;;;;;54721:15:0;;::::1;54673:65;::::0;::::1;4426:51:1::0;54673:39:0;;::::1;::::0;-1:-1:-1;54673:39:0::1;::::0;-1:-1:-1;4399:18:1;;54673:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;54799:15:0::1;::::0;54757:59:::1;::::0;-1:-1:-1;;;;;54799:15:0;;::::1;::::0;-1:-1:-1;54757:59:0;;::::1;::::0;-1:-1:-1;54757:59:0::1;::::0;54799:15:::1;::::0;54757:59:::1;54830:15;:36:::0;;-1:-1:-1;;;;;;54830:36:0::1;-1:-1:-1::0;;;;;54830:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;54083:791:0:o;30417:104::-;30473:13;30506:7;30499:14;;;;;:::i;58970:263::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;59079:13:::1;::::0;-1:-1:-1;;;;;59071:21:0;;::::1;59079:13:::0;::::1;59071:21;;59063:108;;;::::0;-1:-1:-1;;;59063:108:0;;15883:2:1;59063:108:0::1;::::0;::::1;15865:21:1::0;15922:2;15902:18;;;15895:30;15961:34;15941:18;;;15934:62;16032:34;16012:18;;;16005:62;-1:-1:-1;;;16083:19:1;;;16076:41;16134:19;;59063:108:0::1;15855:304:1::0;59063:108:0::1;59184:41;59213:4;59219:5;59184:28;:41::i;:::-;58970:263:::0;;:::o;56520:108::-;56593:15;;:27;;;-1:-1:-1;;;56593:27:0;;;;56566:7;;-1:-1:-1;;;;;56593:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;55229:104;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;55297:18:::1;:28:::0;;-1:-1:-1;;;;;;55297:28:0::1;-1:-1:-1::0;;;;;55297:28:0;;;::::1;::::0;;;::::1;::::0;;55229:104::o;34635:413::-;846:10;34728:4;34772:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34772:34:0;;;;;;;;;;34825:35;;;;34817:85;;;;-1:-1:-1;;;34817:85:0;;16788:2:1;34817:85:0;;;16770:21:1;16827:2;16807:18;;;16800:30;16866:34;16846:18;;;16839:62;-1:-1:-1;;;16917:18:1;;;16910:35;16962:19;;34817:85:0;16760:227:1;34817:85:0;34938:67;846:10;34961:7;34989:15;34970:16;:34;34938:8;:67::i;:::-;-1:-1:-1;35036:4:0;;34635:413;-1:-1:-1;;;34635:413:0:o;56786:151::-;56882:15;;:47;;-1:-1:-1;;;56882:47:0;;-1:-1:-1;;;;;4444:32:1;;;56882:47:0;;;4426:51:1;56855:7:0;;56882:15;;:38;;4399:18:1;;56882:47:0;4381:102:1;31829:175:0;31915:4;31932:42;846:10;31956:9;31967:6;31932:9;:42::i;58726:115::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;58803:19:::1;:30:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;58803:30:0;;::::1;::::0;;;::::1;::::0;;58726:115::o;57094:318::-;57369:15;;:35;;-1:-1:-1;;;57369:35:0;;-1:-1:-1;;;;;4444:32:1;;;57369:35:0;;;4426:51:1;57190:7:0;;;;;;;;;;;;;;;;57369:15;;;:26;;4399:18:1;;57369:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57362:42;;;;;;;;;;;;;;;;57094:318;;;;;;;;;:::o;58436:173::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;58515:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;58515:32:0;;::::1;;::::0;;58563:38:::1;::::0;::::1;::::0;::::1;::::0;58539:8;5959:14:1;5952:22;5934:41;;5922:2;5907:18;;5889:92;58563:38:0::1;;;;;;;;58436:173:::0;:::o;55667:172::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;55759:72:::1;55815:5;55759:37;55783:12;55759:19;;:23;;:37;;;;:::i;:::-;:41:::0;::::1;:72::i;:::-;55744:12;:87:::0;-1:-1:-1;55667:172:0:o;55847:113::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;55924:19:::1;:28:::0;55847:113::o;58149:129::-;58231:15;;:39;;;-1:-1:-1;;;58231:39:0;;;;58204:7;;-1:-1:-1;;;;;58231:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;56387:124;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;56461:15:::1;::::0;:42:::1;::::0;-1:-1:-1;;;56461:42:0;;::::1;::::0;::::1;17497:25:1::0;;;-1:-1:-1;;;;;56461:15:0;;::::1;::::0;:31:::1;::::0;17470:18:1;;56461:42:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56387:124:::0;:::o;55001:110::-;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55068:27:0::1;55098:5;55068:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;55068:35:0::1;::::0;;55001:110::o;57420:328::-;57700:15;;:40;;-1:-1:-1;;;57700:40:0;;;;;17497:25:1;;;57521:7:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57700:15:0;;;;:33;;17470:18:1;;57700:40:0;17452:76:1;2790:192:0;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2879:22:0;::::1;2871:73;;;::::0;-1:-1:-1;;;2871:73:0;;9452:2:1;2871:73:0::1;::::0;::::1;9434:21:1::0;9491:2;9471:18;;;9464:30;9530:34;9510:18;;;9503:62;-1:-1:-1;;;9581:18:1;;;9574:36;9627:19;;2871:73:0::1;9424:228:1::0;2871:73:0::1;2955:19;2965:8;2955:9;:19::i;59599:195::-:0;1963:6;;-1:-1:-1;;;;;1963:6:0;846:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59686:18:0;::::1;;::::0;;;:9:::1;:18;::::0;;;;;::::1;;59678:71;;;::::0;-1:-1:-1;;;59678:71:0;;13501:2:1;59678:71:0::1;::::0;::::1;13483:21:1::0;13540:2;13520:18;;;13513:30;13579:34;13559:18;;;13552:62;-1:-1:-1;;;13630:18:1;;;13623:38;13678:19;;59678:71:0::1;13473:230:1::0;59678:71:0::1;-1:-1:-1::0;;;;;59760:18:0::1;59781:5;59760:18:::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;59760:26:0::1;::::0;;59599:195::o;38319:380::-;-1:-1:-1;;;;;38455:19:0;;38447:68;;;;-1:-1:-1;;;38447:68:0;;15478:2:1;38447:68:0;;;15460:21:1;15517:2;15497:18;;;15490:30;15556:34;15536:18;;;15529:62;-1:-1:-1;;;15607:18:1;;;15600:34;15651:19;;38447:68:0;15450:226:1;38447:68:0;-1:-1:-1;;;;;38534:21:0;;38526:68;;;;-1:-1:-1;;;38526:68:0;;9859:2:1;38526:68:0;;;9841:21:1;9898:2;9878:18;;;9871:30;9937:34;9917:18;;;9910:62;-1:-1:-1;;;9988:18:1;;;9981:32;10030:19;;38526:68:0;9831:224:1;38526:68:0;-1:-1:-1;;;;;38607:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38659:32;;17497:25:1;;;38659:32:0;;17470:18:1;38659:32:0;;;;;;;;38319:380;;;:::o;61697:3202::-;-1:-1:-1;;;;;61829:18:0;;61821:68;;;;-1:-1:-1;;;61821:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61908:16:0;;61900:64;;;;-1:-1:-1;;;61900:64:0;;;;;;;:::i;:::-;61992:1;61983:6;:10;61975:64;;;;-1:-1:-1;;;61975:64:0;;13910:2:1;61975:64:0;;;13892:21:1;13949:2;13929:18;;;13922:30;13988:34;13968:18;;;13961:62;-1:-1:-1;;;14039:18:1;;;14032:39;14088:19;;61975:64:0;13882:231:1;61975:64:0;1963:6;;-1:-1:-1;;;;;62055:15:0;;;1963:6;;62055:15;;;;:32;;-1:-1:-1;1963:6:0;;-1:-1:-1;;;;;62074:13:0;;;1963:6;;62074:13;;62055:32;62052:222;;;62122:12;;62112:6;:22;;62104:75;;;;-1:-1:-1;;;62104:75:0;;11009:2:1;62104:75:0;;;10991:21:1;11048:2;11028:18;;;11021:30;11087:34;11067:18;;;11060:62;-1:-1:-1;;;11138:18:1;;;11131:38;11186:19;;62104:75:0;10981:230:1;62104:75:0;-1:-1:-1;;;;;62203:15:0;;;;;;:9;:15;;;;;;;;62202:16;:34;;;;-1:-1:-1;;;;;;62223:13:0;;;;;;:9;:13;;;;;;;;62222:14;62202:34;62194:68;;;;-1:-1:-1;;;62194:68:0;;14320:2:1;62194:68:0;;;14302:21:1;14359:2;14339:18;;;14332:30;-1:-1:-1;;;14378:18:1;;;14371:51;14439:18;;62194:68:0;14292:171:1;62194:68:0;-1:-1:-1;;;;;62290:31:0;;;;;;:25;:31;;;;;;;;;:64;;-1:-1:-1;;;;;;62325:29:0;;;;;;:25;:29;;;;;;;;62290:64;62286:146;;;62379:12;;;;;;;62371:49;;;;-1:-1:-1;;;62371:49:0;;7043:2:1;62371:49:0;;;7025:21:1;7082:2;7062:18;;;7055:30;7121:26;7101:18;;;7094:54;7165:18;;62371:49:0;7015:174:1;62371:49:0;62787:4;62738:28;31590:18;;;;;;;;;;;62857:19;;62833:43;;;;;;;62905:47;;-1:-1:-1;62942:10:0;;;;62941:11;62905:47;:96;;;;-1:-1:-1;;;;;;62970:31:0;;;;;;:25;:31;;;;;;;;62969:32;62905:96;:134;;;;-1:-1:-1;63018:21:0;;;;;;;62905:134;62887:353;;;63093:12;;63070:20;:35;63066:111;;;63149:12;;63126:35;;63066:111;63191:37;63207:20;63191:15;:37::i;:::-;63281:18;;;;:53;;;;-1:-1:-1;;;;;;63303:31:0;;;;;;:25;:31;;;;;;;;63281:53;63277:229;;;-1:-1:-1;;;;;63360:17:0;;;;;;:11;:17;;;;;;63394:15;;63360:30;;63380:10;63360:30;:::i;:::-;63359:50;63351:93;;;;-1:-1:-1;;;63351:93:0;;17194:2:1;63351:93:0;;;17176:21:1;17233:2;17213:18;;;17206:30;17272:32;17252:18;;;17245:60;17322:18;;63351:93:0;17166:180:1;63351:93:0;-1:-1:-1;;;;;63459:17:0;;;;;;:11;:17;;;;;63479:15;63459:35;;63277:229;-1:-1:-1;;;;;63706:24:0;;63587:12;63706:24;;;:18;:24;;;;;;63602:4;;63706:24;;;:50;;-1:-1:-1;;;;;;63734:22:0;;;;;;:18;:22;;;;;;;;63706:50;63703:96;;;-1:-1:-1;63782:5:0;63703:96;63814:7;63811:511;;;63838:17;63858:37;63884:10;;63858:21;63870:8;;63858:7;;:11;;:21;;;;:::i;:::-;:25;;:37::i;:::-;63963:19;;63838:57;;-1:-1:-1;63963:19:0;;;;;:52;;;;-1:-1:-1;;;;;;63986:29:0;;;;;;:25;:29;;;;;;;;63963:52;:95;;;;;64043:15;64020:10;;64033:6;64020:19;;;;:::i;:::-;64019:39;63963:95;63959:190;;;64091:25;64113:2;64091:17;:9;64105:2;64091:13;:17::i;:25::-;64079:37;;63959:190;64165:12;64180:31;64201:9;64180:16;:6;64191:4;64180:10;:16::i;:::-;:20;;:31::i;:::-;64165:46;-1:-1:-1;64237:16:0;:6;64165:46;64237:10;:16::i;:::-;64228:25;;64268:42;64284:4;64298;64305;64268:15;:42::i;:::-;63811:511;;;64334:33;64350:4;64356:2;64360:6;64334:15;:33::i;:::-;64384:15;;-1:-1:-1;;;;;64384:15:0;:26;64419:4;64426:15;64419:4;-1:-1:-1;;;;;31590:18:0;31563:7;31590:18;;;;;;;;;;;;31489:127;64426:15;64384:58;;-1:-1:-1;;;;;;64384:58:0;;;;;;;-1:-1:-1;;;;;5001:32:1;;;64384:58:0;;;4983:51:1;5050:18;;;5043:34;4956:18;;64384:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64380:74;64468:15;;-1:-1:-1;;;;;64468:15:0;:26;64503:2;64508:13;64503:2;-1:-1:-1;;;;;31590:18:0;31563:7;31590:18;;;;;;;;;;;;31489:127;64508:13;64468:54;;-1:-1:-1;;;;;;64468:54:0;;;;;;;-1:-1:-1;;;;;5001:32:1;;;64468:54:0;;;4983:51:1;5050:18;;;5043:34;4956:18;;64468:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64464:70;64551:10;;;;64547:345;;64592:16;;64630:15;;:28;;-1:-1:-1;;;;;;64630:28:0;;;;;17497:25:1;;;-1:-1:-1;;;;;64630:15:0;;;;:23;;17470:18:1;;64630:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64630:28:0;;;;;;;;-1:-1:-1;;64630:28:0;;;;;;;;;;;;:::i;:::-;;;64626:255;;;;;64756:86;;;19005:25:1;;;19061:2;19046:18;;19039:34;;;19089:18;;;19082:34;;;19147:2;19132:18;;19125:34;;;64832:9:0;;64821:4;;64756:86;;18992:3:1;18977:19;64756:86:0;;;;;;;64659:199;;;64626:255;64547:345;;61697:3202;;;;;;:::o;37290:591::-;-1:-1:-1;;;;;37374:21:0;;37366:67;;;;-1:-1:-1;;;37366:67:0;;14670:2:1;37366:67:0;;;14652:21:1;14709:2;14689:18;;;14682:30;14748:34;14728:18;;;14721:62;-1:-1:-1;;;14799:18:1;;;14792:31;14840:19;;37366:67:0;14642:223:1;37366:67:0;-1:-1:-1;;;;;37533:18:0;;37508:22;37533:18;;;;;;;;;;;37570:24;;;;37562:71;;;;-1:-1:-1;;;37562:71:0;;8140:2:1;37562:71:0;;;8122:21:1;8179:2;8159:18;;;8152:30;8218:34;8198:18;;;8191:62;-1:-1:-1;;;8269:18:1;;;8262:32;8311:19;;37562:71:0;8112:224:1;37562:71:0;-1:-1:-1;;;;;37669:18:0;;:9;:18;;;;;;;;;;37690:23;;;37669:44;;37735:12;:22;;37707:6;;37669:9;37735:22;;37707:6;;37735:22;:::i;:::-;;;;-1:-1:-1;;37775:37:0;;17497:25:1;;;37801:1:0;;-1:-1:-1;;;;;37775:37:0;;;;;17485:2:1;17470:18;37775:37:0;17452:76:1;2990:173:0;3065:6;;;-1:-1:-1;;;;;3082:17:0;;;-1:-1:-1;;;;;;3082:17:0;;;;;;;3115:40;;3065:6;;;3082:17;3065:6;;3115:40;;3046:16;;3115:40;2990:173;;:::o;59241:350::-;-1:-1:-1;;;;;59332:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;59324:118;;;;-1:-1:-1;;;59324:118:0;;11848:2:1;59324:118:0;;;11830:21:1;11887:2;11867:18;;;11860:30;11926:34;11906:18;;;11899:62;11997:34;11977:18;;;11970:62;-1:-1:-1;;;12048:19:1;;;12041:32;12090:19;;59324:118:0;11820:295:1;59324:118:0;-1:-1:-1;;;;;59453:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;59453:39:0;;;;;;;;;;;;59505:79;;59530:15;;:42;;-1:-1:-1;;;59530:42:0;;-1:-1:-1;;;;;4444:32:1;;;59530:42:0;;;4426:51:1;59530:15:0;;;;:36;;4399:18:1;;59530:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6609:98;6667:7;6694:5;6698:1;6694;:5;:::i;:::-;6687:12;6609:98;-1:-1:-1;;;6609:98:0:o;7008:::-;7066:7;7093:5;7097:1;7093;:5;:::i;60829:860::-;52990:10;:17;;-1:-1:-1;;52990:17:0;53003:4;52990:17;;;60901:24:::1;60918:6:::0;60901:16:::1;:24::i;:::-;61041:10;::::0;61027:8:::1;::::0;61015:7:::1;::::0;60961:21:::1;::::0;60938:20:::1;::::0;61015:37:::1;::::0;:21:::1;::::0;:11:::1;:21::i;:37::-;60995:57;;61065:14;61082:40;61112:9;61082:25;61099:7;;61082:12;:16;;:25;;;;:::i;:40::-;61160:17;::::0;61152:50:::1;::::0;61065:57;;-1:-1:-1;61134:13:0::1;::::0;-1:-1:-1;;;;;61160:17:0;;::::1;::::0;61065:57;;61134:13;61152:50;61134:13;61152:50;61065:57;61160:17;61152:50:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61133:69;;;61221:8;61213:32;;;::::0;-1:-1:-1;;;61213:32:0;;7800:2:1;61213:32:0::1;::::0;::::1;7782:21:1::0;7839:2;7819:18;;;7812:30;-1:-1:-1;;;7858:18:1;;;7851:41;7909:18;;61213:32:0::1;7772:161:1::0;61213:32:0::1;61258:15;61276:41;61307:9;61276:26;61293:8;;61276:12;:16;;:26;;;;:::i;:41::-;61355:18;::::0;61347:52:::1;::::0;61258:59;;-1:-1:-1;61329:13:0::1;::::0;-1:-1:-1;;;;;61355:18:0;;::::1;::::0;61258:59;;61329:13;61347:52;61329:13;61347:52;61258:59;61355:18;61347:52:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61328:71;;;61418:8;61410:32;;;::::0;-1:-1:-1;;;61410:32:0;;10669:2:1;61410:32:0::1;::::0;::::1;10651:21:1::0;10708:2;10688:18;;;10681:30;-1:-1:-1;;;10727:18:1;;;10720:41;10778:18;;61410:32:0::1;10641:161:1::0;61410:32:0::1;61455:17;61475:37;61504:7:::0;61475:24:::1;:12:::0;61492:6;61475:16:::1;:24::i;:::-;:28:::0;::::1;:37::i;:::-;61549:15;::::0;61541:51:::1;::::0;61455:57;;-1:-1:-1;61524:12:0::1;::::0;-1:-1:-1;;;;;61549:15:0;;::::1;::::0;61455:57;;61524:12;61541:51;61524:12;61541:51;61455:57;61549:15;61541:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61523:69;;;61609:7;61606:76;;;61638:32;::::0;;18695:25:1;;;18751:2;18736:18;;18729:34;;;61638:32:0::1;::::0;18668:18:1;61638:32:0::1;;;;;;;61606:76;-1:-1:-1::0;;53030:10:0;:18;;-1:-1:-1;;53030:18:0;;;-1:-1:-1;;;;;;;60829:860:0:o;5871:98::-;5929:7;5956:5;5960:1;5956;:5;:::i;6252:98::-;6310:7;6337:5;6341:1;6337;:5;:::i;35538:733::-;-1:-1:-1;;;;;35678:20:0;;35670:70;;;;-1:-1:-1;;;35670:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35759:23:0;;35751:71;;;;-1:-1:-1;;;35751:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35919:17:0;;35895:21;35919:17;;;;;;;;;;;35955:23;;;;35947:74;;;;-1:-1:-1;;;35947:74:0;;10262:2:1;35947:74:0;;;10244:21:1;10301:2;10281:18;;;10274:30;10340:34;10320:18;;;10313:62;-1:-1:-1;;;10391:18:1;;;10384:36;10437:19;;35947:74:0;10234:228:1;35947:74:0;-1:-1:-1;;;;;36057:17:0;;;:9;:17;;;;;;;;;;;36077:22;;;36057:42;;36121:20;;;;;;;;:30;;36093:6;;36057:9;36121:30;;36093:6;;36121:30;:::i;:::-;;;;;;;;36186:9;-1:-1:-1;;;;;36169:35:0;36178:6;-1:-1:-1;;;;;36169:35:0;;36197:6;36169:35;;;;17497:25:1;;17485:2;17470:18;;17452:76;60228:593:0;60382:16;;;60396:1;60382:16;;;;;;;;60358:21;;60382:16;;;;;;;;;;-1:-1:-1;60382:16:0;60358:40;;60427:4;60409;60414:1;60409:7;;;;;;-1:-1:-1;;;60409:7:0;;;;;;;;;-1:-1:-1;;;;;60409:23:0;;;:7;;;;;;;;;;:23;;;;60453:15;;:22;;;-1:-1:-1;;;60453:22:0;;;;:15;;;;;:20;;:22;;;;;60409:7;;60453:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60443:4;60448:1;60443:7;;;;;;-1:-1:-1;;;60443:7:0;;;;;;;;;-1:-1:-1;;;;;60443:32:0;;;:7;;;;;;;;;:32;60520:15;;60488:62;;60505:4;;60520:15;60538:11;60488:8;:62::i;:::-;60589:15;;:224;;-1:-1:-1;;;60589:224:0;;-1:-1:-1;;;;;60589:15:0;;;;:66;;:224;;60670:11;;60589:15;;60740:4;;60767;;60787:15;;60589:224;;;:::i;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:392::-;1481:6;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:2;;;1563:6;1555;1548:22;1510:2;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1746:30;1705:32;1746:30;:::i;1813:691::-;1944:6;1952;1960;1968;1976;1984;1992;2000;2053:3;2041:9;2032:7;2028:23;2024:33;2021:2;;;2075:6;2067;2060:22;2021:2;2112:9;2106:16;2131:31;2156:5;2131:31;:::i;:::-;2181:5;2171:15;;;2226:2;2215:9;2211:18;2205:25;2195:35;;2270:2;2259:9;2255:18;2249:25;2239:35;;2314:2;2303:9;2299:18;2293:25;2283:35;;2358:3;2347:9;2343:19;2337:26;2327:36;;2403:3;2392:9;2388:19;2382:26;2372:36;;2448:3;2437:9;2433:19;2427:26;2417:36;;2493:3;2482:9;2478:19;2472:26;2462:36;;2011:493;;;;;;;;;;;:::o;2509:325::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;2703:9;2690:23;2722:31;2747:5;2722:31;:::i;:::-;2772:5;2824:2;2809:18;;;;2796:32;;-1:-1:-1;;;2596:238:1:o;2839:251::-;2895:6;2948:2;2936:9;2927:7;2923:23;2919:32;2916:2;;;2969:6;2961;2954:22;2916:2;3013:9;3000:23;3032:28;3054:5;3032:28;:::i;3095:255::-;3162:6;3215:2;3203:9;3194:7;3190:23;3186:32;3183:2;;;3236:6;3228;3221:22;3183:2;3273:9;3267:16;3292:28;3314:5;3292:28;:::i;3355:190::-;3414:6;3467:2;3455:9;3446:7;3442:23;3438:32;3435:2;;;3488:6;3480;3473:22;3435:2;-1:-1:-1;3516:23:1;;3425:120;-1:-1:-1;3425:120:1:o;3550:194::-;3620:6;3673:2;3661:9;3652:7;3648:23;3644:32;3641:2;;;3694:6;3686;3679:22;3641:2;-1:-1:-1;3722:16:1;;3631:113;-1:-1:-1;3631:113:1:o;3749:316::-;3837:6;3845;3853;3906:2;3894:9;3885:7;3881:23;3877:32;3874:2;;;3927:6;3919;3912:22;3874:2;3961:9;3955:16;3945:26;;4011:2;4000:9;3996:18;3990:25;3980:35;;4055:2;4044:9;4040:18;4034:25;4024:35;;3864:201;;;;;:::o;6233:603::-;6345:4;6374:2;6403;6392:9;6385:21;6435:6;6429:13;6478:6;6473:2;6462:9;6458:18;6451:34;6503:4;6516:140;6530:6;6527:1;6524:13;6516:140;;;6625:14;;;6621:23;;6615:30;6591:17;;;6610:2;6587:26;6580:66;6545:10;;6516:140;;;6674:6;6671:1;6668:13;6665:2;;;6744:4;6739:2;6730:6;6719:9;6715:22;6711:31;6704:45;6665:2;-1:-1:-1;6820:2:1;6799:15;-1:-1:-1;;6795:29:1;6780:45;;;;6827:2;6776:54;;6354:482;-1:-1:-1;;;6354:482:1:o;7194:399::-;7396:2;7378:21;;;7435:2;7415:18;;;7408:30;7474:34;7469:2;7454:18;;7447:62;-1:-1:-1;;;7540:2:1;7525:18;;7518:33;7583:3;7568:19;;7368:225::o;12938:356::-;13140:2;13122:21;;;13159:18;;;13152:30;13218:34;13213:2;13198:18;;13191:62;13285:2;13270:18;;13112:182::o;14870:401::-;15072:2;15054:21;;;15111:2;15091:18;;;15084:30;15150:34;15145:2;15130:18;;15123:62;-1:-1:-1;;;15216:2:1;15201:18;;15194:35;15261:3;15246:19;;15044:227::o;17533:983::-;17795:4;17843:3;17832:9;17828:19;17874:6;17863:9;17856:25;17900:2;17938:6;17933:2;17922:9;17918:18;17911:34;17981:3;17976:2;17965:9;17961:18;17954:31;18005:6;18040;18034:13;18071:6;18063;18056:22;18109:3;18098:9;18094:19;18087:26;;18148:2;18140:6;18136:15;18122:29;;18169:4;18182:195;18196:6;18193:1;18190:13;18182:195;;;18261:13;;-1:-1:-1;;;;;18257:39:1;18245:52;;18352:15;;;;18317:12;;;;18293:1;18211:9;18182:195;;;-1:-1:-1;;;;;;;18433:32:1;;;;18428:2;18413:18;;18406:60;-1:-1:-1;;;18497:3:1;18482:19;18475:35;18394:3;17804:712;-1:-1:-1;;;17804:712:1:o;19359:128::-;19399:3;19430:1;19426:6;19423:1;19420:13;19417:2;;;19436:18;;:::i;:::-;-1:-1:-1;19472:9:1;;19407:80::o;19492:217::-;19532:1;19558;19548:2;;-1:-1:-1;;;19583:31:1;;19637:4;19634:1;19627:15;19665:4;19590:1;19655:15;19548:2;-1:-1:-1;19694:9:1;;19538:171::o;19714:168::-;19754:7;19820:1;19816;19812:6;19808:14;19805:1;19802:21;19797:1;19790:9;19783:17;19779:45;19776:2;;;19827:18;;:::i;:::-;-1:-1:-1;19867:9:1;;19766:116::o;19887:125::-;19927:4;19955:1;19952;19949:8;19946:2;;;19960:18;;:::i;:::-;-1:-1:-1;19997:9:1;;19936:76::o;20017:380::-;20096:1;20092:12;;;;20139;;;20160:2;;20214:4;20206:6;20202:17;20192:27;;20160:2;20267;20259:6;20256:14;20236:18;20233:38;20230:2;;;20313:10;20308:3;20304:20;20301:1;20294:31;20348:4;20345:1;20338:15;20376:4;20373:1;20366:15;20230:2;;20072:325;;;:::o;20402:127::-;20463:10;20458:3;20454:20;20451:1;20444:31;20494:4;20491:1;20484:15;20518:4;20515:1;20508:15;20534:131;-1:-1:-1;;;;;20609:31:1;;20599:42;;20589:2;;20655:1;20652;20645:12;20670:118;20756:5;20749:13;20742:21;20735:5;20732:32;20722:2;;20778:1;20775;20768:12
Swarm Source
ipfs://760ab5a5fb4929b7d58106361ef564e116a79ee8516c1d09bbbed129725fe541
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.