ERC-721
Overview
Max Total Supply
2,555 OPTIBOYZ
Holders
472
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OPTIBOYZLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
MyOptiBoyzNftContract
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at optimistic.etherscan.io on 2022-09-20
*/
//*********************************************************************//
//*********************************************************************//
//
// __ ___ ____ __ _ ____ _ ______________
// / |/ /_ __ / __ \____ / /_(_) __ )____ __ ______ / | / / ____/_ __/
// / /|_/ / / / / / / / / __ \/ __/ / __ / __ \/ / / /_ / / |/ / /_ / /
// / / / / /_/ / / /_/ / /_/ / /_/ / /_/ / /_/ / /_/ / / /_/ /| / __/ / /
// /_/ /_/\__, / \____/ .___/\__/_/_____/\____/\__, / /___/_/ |_/_/ /_/
// /____/ /_/ /____/
//
//*********************************************************************//
//*********************************************************************//
//-------------DEPENDENCIES--------------------------//
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if account is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, isContract will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on isContract to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's transfer: sends amount wei to
* recipient, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by transfer, making them unable to receive funds via
* transfer. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to recipient, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level call. A
* plain call is an unsafe replacement for a function call: use this
* function instead.
*
* If target reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode].
*
* Requirements:
*
* - target must be a contract.
* - calling target with data must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return 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);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} tokenId token is transferred to this contract via {IERC721-safeTransferFrom}
* by operator from from, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with IERC721.onERC721Received.selector.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* interfaceId. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
*
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when tokenId token is transferred from from to to.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when owner enables approved to manage the tokenId token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when owner enables or disables (approved) operator to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in owner's account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the tokenId token.
*
* Requirements:
*
* - tokenId must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers tokenId token from from to to, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - from cannot be the zero address.
* - to cannot be the zero address.
* - tokenId token must exist and be owned by from.
* - If the caller is not from, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers tokenId token from from to to.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - from cannot be the zero address.
* - to cannot be the zero address.
* - tokenId token must be owned by from.
* - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to to to transfer tokenId token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - tokenId must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for tokenId token.
*
* Requirements:
*
* - tokenId must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove operator as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The operator cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the operator is allowed to manage all of the assets of owner.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers tokenId token from from to to.
*
* Requirements:
*
* - from cannot be the zero address.
* - to cannot be the zero address.
* - tokenId token must exist and be owned by from.
* - If the caller is not from, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If to refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by owner at a given index of its token list.
* Use along with {balanceOf} to enumerate all of owner's tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given index of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for tokenId token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a uint256 to its ASCII string hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a uint256 to its ASCII string hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from ReentrancyGuard will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single nonReentrant guard, functions marked as
* nonReentrant may not call one another. This can be worked around by making
* those functions private, and then adding external nonReentrant entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a nonReentrant function from another nonReentrant
* function is not supported. It is possible to prevent this from happening
* by making the nonReentrant function external, and making it call a
* private function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* onlyOwner, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev 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 {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (newOwner).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (newOwner).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
//-------------END DEPENDENCIES------------------------//
// Rampp Contracts v2.1 (Teams.sol)
pragma solidity ^0.8.0;
/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via Mintplex.xyz.
**/
abstract contract Teams is Ownable{
mapping (address => bool) internal team;
/**
* @dev Adds an address to the team. Allows them to execute protected functions
* @param _address the ETH address to add, cannot be 0x and cannot be in team already
**/
function addToTeam(address _address) public onlyOwner {
require(_address != address(0), "Invalid address");
require(!inTeam(_address), "This address is already in your team.");
team[_address] = true;
}
/**
* @dev Removes an address to the team.
* @param _address the ETH address to remove, cannot be 0x and must be in team
**/
function removeFromTeam(address _address) public onlyOwner {
require(_address != address(0), "Invalid address");
require(inTeam(_address), "This address is not in your team currently.");
team[_address] = false;
}
/**
* @dev Check if an address is valid and active in the team
* @param _address ETH address to check for truthiness
**/
function inTeam(address _address)
public
view
returns (bool)
{
require(_address != address(0), "Invalid address to check.");
return team[_address] == true;
}
/**
* @dev Throws if called by any account other than the owner or team member.
*/
modifier onlyTeamOrOwner() {
bool _isOwner = owner() == _msgSender();
bool _isTeam = inTeam(_msgSender());
require(_isOwner || _isTeam, "Team: caller is not the owner or in Team.");
_;
}
}
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree
* defined by 'root'. For this, a 'proof' must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// File: Allowlist.sol
pragma solidity ^0.8.0;
abstract contract Allowlist is Teams {
bytes32 public merkleRoot;
bool public onlyAllowlistMode = false;
/**
* @dev Update merkle root to reflect changes in Allowlist
* @param _newMerkleRoot new merkle root to reflect most recent Allowlist
*/
function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner {
require(_newMerkleRoot != merkleRoot, "Merkle root will be unchanged!");
merkleRoot = _newMerkleRoot;
}
/**
* @dev Check the proof of an address if valid for merkle root
* @param _to address to check for proof
* @param _merkleProof Proof of the address to validate against root and leaf
*/
function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) {
require(merkleRoot != 0, "Merkle root is not set!");
bytes32 leaf = keccak256(abi.encodePacked(_to));
return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
}
function enableAllowlistOnlyMode() public onlyTeamOrOwner {
onlyAllowlistMode = true;
}
function disableAllowlistOnlyMode() public onlyTeamOrOwner {
onlyAllowlistMode = false;
}
}
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
*
* Does not support burning tokens to address(0).
*/
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable,
Teams
{
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 private currentIndex;
uint256 public immutable collectionSize;
uint256 public maxBatchSize;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) private _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/* @dev Mapping of restricted operator approvals set by contract Owner
* This serves as an optional addition to ERC-721 so
* that the contract owner can elect to prevent specific addresses/contracts
* from being marked as the approver for a token. The reason for this
* is that some projects may want to retain control of where their tokens can/can not be listed
* either due to ethics, loyalty, or wanting trades to only occur on their personal marketplace.
* By default, there are no restrictions. The contract owner must deliberatly block an address
*/
mapping(address => bool) public restrictedApprovalAddresses;
/**
* @dev
* maxBatchSize refers to how much a minter can mint at a time.
* collectionSize_ refers to how many tokens are in the collection.
*/
constructor(
string memory name_,
string memory symbol_,
uint256 maxBatchSize_,
uint256 collectionSize_
) {
require(
collectionSize_ > 0,
"ERC721A: collection must have a nonzero supply"
);
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
_name = name_;
_symbol = symbol_;
maxBatchSize = maxBatchSize_;
collectionSize = collectionSize_;
currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalMinted();
}
function currentTokenId() public view returns (uint256) {
return _totalMinted();
}
function getNextTokenId() public view returns (uint256) {
return _totalMinted() + 1;
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
unchecked {
return currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
override
returns (uint256)
{
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = 0; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "ERC721A: balance query for the zero address");
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(
owner != address(0),
"ERC721A: number minted query for the zero address"
);
return uint256(_addressData[owner].numberMinted);
}
function ownershipOf(uint256 tokenId)
internal
view
returns (TokenOwnership memory)
{
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the baseURI and the tokenId. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev Sets the value for an address to be in the restricted approval address pool.
* Setting an address to true will disable token owners from being able to mark the address
* for approval for trading. This would be used in theory to prevent token owners from listing
* on specific marketplaces or protcols. Only modifible by the contract owner/team.
* @param _address the marketplace/user to modify restriction status of
* @param _isRestricted restriction status of the _address to be set. true => Restricted, false => Open
*/
function setApprovalRestriction(address _address, bool _isRestricted) public onlyTeamOrOwner {
restrictedApprovalAddresses[_address] = _isRestricted;
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(restrictedApprovalAddresses[to] == false, "ERC721RestrictedApproval: Address to approve has been restricted by contract owner and is not allowed to be marked for approval");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), "ERC721A: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), "ERC721A: approve to caller");
require(restrictedApprovalAddresses[operator] == false, "ERC721RestrictedApproval: Operator address has been restricted by contract owner and is not allowed to be marked for approval");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether tokenId exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (_mint),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < currentIndex;
}
function _safeMint(address to, uint256 quantity, bool isAdminMint) internal {
_safeMint(to, quantity, isAdminMint, "");
}
/**
* @dev Mints quantity tokens and transfers them to to.
*
* Requirements:
*
* - there must be quantity tokens remaining unminted in the total collection.
* - to cannot be the zero address.
* - quantity cannot be larger than the max batch size.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bool isAdminMint,
bytes memory _data
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
// We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
require(!_exists(startTokenId), "ERC721A: token already minted");
// For admin mints we do not want to enforce the maxBatchSize limit
if (isAdminMint == false) {
require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
}
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
AddressData memory addressData = _addressData[to];
_addressData[to] = AddressData(
addressData.balance + uint128(quantity),
addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity))
);
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
uint256 updatedIndex = startTokenId;
for (uint256 i = 0; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
updatedIndex++;
}
currentIndex = updatedIndex;
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers tokenId from from to to.
*
* Requirements:
*
* - to cannot be the zero address.
* - tokenId token must be owned by from.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(
isApprovedOrOwner,
"ERC721A: transfer caller is not owner nor approved"
);
require(
prevOwnership.addr == from,
"ERC721A: transfer from incorrect owner"
);
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId] = TokenOwnership(
prevOwnership.addr,
prevOwnership.startTimestamp
);
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve to to operate on tokenId
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
uint256 public nextOwnerToExplicitlySet = 0;
/**
* @dev Explicitly set owners to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
require(quantity > 0, "quantity must be nonzero");
if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet');
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
if (endIndex > collectionSize - 1) {
endIndex = collectionSize - 1;
}
// We know if the last one in the group exists, all in the group exist, due to serial ordering.
require(_exists(endIndex), "not enough minted yet for this cleanup");
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i] = TokenOwnership(
ownership.addr,
ownership.startTimestamp
);
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721A: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When from and to are both non-zero, from's tokenId will be
* transferred to to.
* - When from is zero, tokenId will be minted for to.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when from and to are both non-zero.
* - from and to are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
abstract contract Ramppable {
address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;
modifier isRampp() {
require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP");
_;
}
}
/** TimedDrop.sol
* This feature will allow the owner to be able to set timed drops for both the public and allowlist mint (if applicable).
* It is bound by the block timestamp. The owner is able to determine if the feature should be used as all
* with the "enforcePublicDropTime" and "enforceAllowlistDropTime" variables. If the feature is disabled the implmented
* *DropTimePassed() functions will always return true. Otherwise calculation is done to check if time has passed.
*/
abstract contract TimedDrop is Teams {
bool public enforcePublicDropTime = false;
uint256 public publicDropTime = 0;
/**
* @dev Allow the contract owner to set the public time to mint.
* @param _newDropTime timestamp since Epoch in seconds you want public drop to happen
*/
function setPublicDropTime(uint256 _newDropTime) public onlyTeamOrOwner {
require(_newDropTime > block.timestamp, "Drop date must be in future! Otherwise call disablePublicDropTime!");
publicDropTime = _newDropTime;
}
function usePublicDropTime() public onlyTeamOrOwner {
enforcePublicDropTime = true;
}
function disablePublicDropTime() public onlyTeamOrOwner {
enforcePublicDropTime = false;
}
/**
* @dev determine if the public droptime has passed.
* if the feature is disabled then assume the time has passed.
*/
function publicDropTimePassed() public view returns(bool) {
if(enforcePublicDropTime == false) {
return true;
}
return block.timestamp >= publicDropTime;
}
// Allowlist implementation of the Timed Drop feature
bool public enforceAllowlistDropTime = false;
uint256 public allowlistDropTime = 0;
/**
* @dev Allow the contract owner to set the allowlist time to mint.
* @param _newDropTime timestamp since Epoch in seconds you want public drop to happen
*/
function setAllowlistDropTime(uint256 _newDropTime) public onlyTeamOrOwner {
require(_newDropTime > block.timestamp, "Drop date must be in future! Otherwise call disableAllowlistDropTime!");
allowlistDropTime = _newDropTime;
}
function useAllowlistDropTime() public onlyTeamOrOwner {
enforceAllowlistDropTime = true;
}
function disableAllowlistDropTime() public onlyTeamOrOwner {
enforceAllowlistDropTime = false;
}
function allowlistDropTimePassed() public view returns(bool) {
if(enforceAllowlistDropTime == false) {
return true;
}
return block.timestamp >= allowlistDropTime;
}
}
interface IERC20 {
function allowance(address owner, address spender) external view returns (uint256);
function transfer(address _to, uint256 _amount) external returns (bool);
function balanceOf(address account) external view returns (uint256);
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// File: WithdrawableV2
// This abstract allows the contract to be able to mint and ingest ERC-20 payments for mints.
// ERC-20 Payouts are limited to a single payout address. This feature
// will charge a small flat fee in native currency that is not subject to regular rev sharing.
// This contract also covers the normal functionality of accepting native base currency rev-sharing
abstract contract WithdrawableV2 is Teams, Ramppable {
struct acceptedERC20 {
bool isActive;
uint256 chargeAmount;
}
mapping(address => acceptedERC20) private allowedTokenContracts;
address[] public payableAddresses = [RAMPPADDRESS,0xF6BEFcFDe07bbFfE58A9a579804bD72d1e192723];
address[] public surchargePayableAddresses = [RAMPPADDRESS];
address public erc20Payable = 0xF6BEFcFDe07bbFfE58A9a579804bD72d1e192723;
uint256[] public payableFees = [5,95];
uint256[] public surchargePayableFees = [100];
uint256 public payableAddressCount = 2;
uint256 public surchargePayableAddressCount = 1;
uint256 public ramppSurchargeBalance = 0 ether;
uint256 public ramppSurchargeFee = 0.001 ether;
bool public onlyERC20MintingMode = false;
/**
* @dev Calculates the true payable balance of the contract as the
* value on contract may be from ERC-20 mint surcharges and not
* public mint charges - which are not eligable for rev share & user withdrawl
*/
function calcAvailableBalance() public view returns(uint256) {
return address(this).balance - ramppSurchargeBalance;
}
function withdrawAll() public onlyTeamOrOwner {
require(calcAvailableBalance() > 0);
_withdrawAll();
}
function withdrawAllRampp() public isRampp {
require(calcAvailableBalance() > 0);
_withdrawAll();
}
function _withdrawAll() private {
uint256 balance = calcAvailableBalance();
for(uint i=0; i < payableAddressCount; i++ ) {
_widthdraw(
payableAddresses[i],
(balance * payableFees[i]) / 100
);
}
}
function _widthdraw(address _address, uint256 _amount) private {
(bool success, ) = _address.call{value: _amount}("");
require(success, "Transfer failed.");
}
/**
* @dev This function is similiar to the regular withdraw but operates only on the
* balance that is available to surcharge payout addresses. This would be Rampp + partners
**/
function _withdrawAllSurcharges() private {
uint256 balance = ramppSurchargeBalance;
if(balance == 0) { return; }
for(uint i=0; i < surchargePayableAddressCount; i++ ) {
_widthdraw(
surchargePayableAddresses[i],
(balance * surchargePayableFees[i]) / 100
);
}
ramppSurchargeBalance = 0 ether;
}
/**
* @dev Allow contract owner to withdraw ERC-20 balance from contract
* in the event ERC-20 tokens are paid to the contract for mints. This will
* send the tokens to the payout as well as payout the surcharge fee to Rampp
* @param _tokenContract contract of ERC-20 token to withdraw
* @param _amountToWithdraw balance to withdraw according to balanceOf of ERC-20 token in wei
*/
function withdrawERC20(address _tokenContract, uint256 _amountToWithdraw) public onlyTeamOrOwner {
require(_amountToWithdraw > 0);
IERC20 tokenContract = IERC20(_tokenContract);
require(tokenContract.balanceOf(address(this)) >= _amountToWithdraw, "WithdrawV2: Contract does not own enough tokens");
tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient
_withdrawAllSurcharges();
}
/**
* @dev Allow Rampp to be able to withdraw only its ERC-20 payment surcharges from the contract.
*/
function withdrawRamppSurcharges() public isRampp {
require(ramppSurchargeBalance > 0, "WithdrawableV2: No Rampp surcharges in balance.");
_withdrawAllSurcharges();
}
/**
* @dev Helper function to increment Rampp surcharge balance when ERC-20 payment is made.
*/
function addSurcharge() internal {
ramppSurchargeBalance += ramppSurchargeFee;
}
/**
* @dev Helper function to enforce Rampp surcharge fee when ERC-20 mint is made.
*/
function hasSurcharge() internal returns(bool) {
return msg.value == ramppSurchargeFee;
}
/**
* @dev Set surcharge fee for using ERC-20 payments on contract
* @param _newSurcharge is the new surcharge value of native currency in wei to facilitate ERC-20 payments
*/
function setRamppSurcharge(uint256 _newSurcharge) public isRampp {
ramppSurchargeFee = _newSurcharge;
}
/**
* @dev check if an ERC-20 contract is a valid payable contract for executing a mint.
* @param _erc20TokenContract address of ERC-20 contract in question
*/
function isApprovedForERC20Payments(address _erc20TokenContract) public view returns(bool) {
return allowedTokenContracts[_erc20TokenContract].isActive == true;
}
/**
* @dev get the value of tokens to transfer for user of an ERC-20
* @param _erc20TokenContract address of ERC-20 contract in question
*/
function chargeAmountForERC20(address _erc20TokenContract) public view returns(uint256) {
require(isApprovedForERC20Payments(_erc20TokenContract), "This ERC-20 contract is not approved to make payments on this contract!");
return allowedTokenContracts[_erc20TokenContract].chargeAmount;
}
/**
* @dev Explicity sets and ERC-20 contract as an allowed payment method for minting
* @param _erc20TokenContract address of ERC-20 contract in question
* @param _isActive default status of if contract should be allowed to accept payments
* @param _chargeAmountInTokens fee (in tokens) to charge for mints for this specific ERC-20 token
*/
function addOrUpdateERC20ContractAsPayment(address _erc20TokenContract, bool _isActive, uint256 _chargeAmountInTokens) public onlyTeamOrOwner {
allowedTokenContracts[_erc20TokenContract].isActive = _isActive;
allowedTokenContracts[_erc20TokenContract].chargeAmount = _chargeAmountInTokens;
}
/**
* @dev Add an ERC-20 contract as being a valid payment method. If passed a contract which has not been added
* it will assume the default value of zero. This should not be used to create new payment tokens.
* @param _erc20TokenContract address of ERC-20 contract in question
*/
function enableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner {
allowedTokenContracts[_erc20TokenContract].isActive = true;
}
/**
* @dev Disable an ERC-20 contract as being a valid payment method. If passed a contract which has not been added
* it will assume the default value of zero. This should not be used to create new payment tokens.
* @param _erc20TokenContract address of ERC-20 contract in question
*/
function disableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner {
allowedTokenContracts[_erc20TokenContract].isActive = false;
}
/**
* @dev Enable only ERC-20 payments for minting on this contract
*/
function enableERC20OnlyMinting() public onlyTeamOrOwner {
onlyERC20MintingMode = true;
}
/**
* @dev Disable only ERC-20 payments for minting on this contract
*/
function disableERC20OnlyMinting() public onlyTeamOrOwner {
onlyERC20MintingMode = false;
}
/**
* @dev Set the payout of the ERC-20 token payout to a specific address
* @param _newErc20Payable new payout addresses of ERC-20 tokens
*/
function setERC20PayableAddress(address _newErc20Payable) public onlyTeamOrOwner {
require(_newErc20Payable != address(0), "WithdrawableV2: new ERC-20 payout cannot be the zero address");
require(_newErc20Payable != erc20Payable, "WithdrawableV2: new ERC-20 payout is same as current payout");
erc20Payable = _newErc20Payable;
}
/**
* @dev Reset the Rampp surcharge total to zero regardless of value on contract currently.
*/
function resetRamppSurchargeBalance() public isRampp {
ramppSurchargeBalance = 0 ether;
}
/**
* @dev Allows Rampp wallet to update its own reference as well as update
* the address for the Rampp-owed payment split. Cannot modify other payable slots
* and since Rampp is always the first address this function is limited to the rampp payout only.
* @param _newAddress updated Rampp Address
*/
function setRamppAddress(address _newAddress) public isRampp {
require(_newAddress != RAMPPADDRESS, "WithdrawableV2: New Rampp address must be different");
RAMPPADDRESS = _newAddress;
payableAddresses[0] = _newAddress;
}
}
// File: isFeeable.sol
abstract contract Feeable is Teams {
uint256 public PRICE = 0 ether;
function setPrice(uint256 _feeInWei) public onlyTeamOrOwner {
PRICE = _feeInWei;
}
function getPrice(uint256 _count) public view returns (uint256) {
return PRICE * _count;
}
}
abstract contract RamppERC721A is
Ownable,
Teams,
ERC721A,
WithdrawableV2,
ReentrancyGuard
, Feeable
, Allowlist
, TimedDrop
{
constructor(
string memory tokenName,
string memory tokenSymbol
) ERC721A(tokenName, tokenSymbol, 2, 2555) { }
uint8 public CONTRACT_VERSION = 2;
string public _baseTokenURI = "ipfs://QmSdr5R2PdsmDW3mx1zkfMFGoheXgok7GeVy8cN4qvZEuQ/";
bool public mintingOpen = true;
bool public isRevealed = false;
uint256 public MAX_WALLET_MINTS = 5;
/////////////// Admin Mint Functions
/**
* @dev Mints a token to an address with a tokenURI.
* This is owner only and allows a fee-free drop
* @param _to address of the future owner of the token
* @param _qty amount of tokens to drop the owner
*/
function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{
require(_qty > 0, "Must mint at least 1 token.");
require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 2555");
_safeMint(_to, _qty, true);
}
/////////////// GENERIC MINT FUNCTIONS
/**
* @dev Mints a single token to an address.
* fee may or may not be required*
* @param _to address of the future owner of the token
*/
function mintTo(address _to) public payable {
require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 2555");
require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
require(publicDropTimePassed() == true, "Public drop time has not passed!");
require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
_safeMint(_to, 1, false);
}
/**
* @dev Mints tokens to an address in batch.
* fee may or may not be required*
* @param _to address of the future owner of the token
* @param _amount number of tokens to mint
*/
function mintToMultiple(address _to, uint256 _amount) public payable {
require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
require(_amount >= 1, "Must mint at least 1 token");
require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
require(publicDropTimePassed() == true, "Public drop time has not passed!");
require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 2555");
require(msg.value == getPrice(_amount), "Value below required mint fee for amount");
_safeMint(_to, _amount, false);
}
/**
* @dev Mints tokens to an address in batch using an ERC-20 token for payment
* fee may or may not be required*
* @param _to address of the future owner of the token
* @param _amount number of tokens to mint
* @param _erc20TokenContract erc-20 token contract to mint with
*/
function mintToMultipleERC20(address _to, uint256 _amount, address _erc20TokenContract) public payable {
require(_amount >= 1, "Must mint at least 1 token");
require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 2555");
require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
require(publicDropTimePassed() == true, "Public drop time has not passed!");
require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
// ERC-20 Specific pre-flight checks
require(isApprovedForERC20Payments(_erc20TokenContract), "ERC-20 Token is not approved for minting!");
uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
IERC20 payableToken = IERC20(_erc20TokenContract);
require(payableToken.balanceOf(_to) >= tokensQtyToTransfer, "Buyer does not own enough of token to complete purchase");
require(payableToken.allowance(_to, address(this)) >= tokensQtyToTransfer, "Buyer did not approve enough of ERC-20 token to complete purchase");
require(hasSurcharge(), "Fee for ERC-20 payment not provided!");
bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
require(transferComplete, "ERC-20 token was unable to be transferred");
_safeMint(_to, _amount, false);
addSurcharge();
}
function openMinting() public onlyTeamOrOwner {
mintingOpen = true;
}
function stopMinting() public onlyTeamOrOwner {
mintingOpen = false;
}
///////////// ALLOWLIST MINTING FUNCTIONS
/**
* @dev Mints tokens to an address using an allowlist.
* fee may or may not be required*
* @param _to address of the future owner of the token
* @param _merkleProof merkle proof array
*/
function mintToAL(address _to, bytes32[] calldata _merkleProof) public payable {
require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 2555");
require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
require(allowlistDropTimePassed() == true, "Allowlist drop time has not passed!");
_safeMint(_to, 1, false);
}
/**
* @dev Mints tokens to an address using an allowlist.
* fee may or may not be required*
* @param _to address of the future owner of the token
* @param _amount number of tokens to mint
* @param _merkleProof merkle proof array
*/
function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable {
require(onlyERC20MintingMode == false, "Only minting with ERC-20 tokens is enabled.");
require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
require(_amount >= 1, "Must mint at least 1 token");
require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 2555");
require(msg.value == getPrice(_amount), "Value below required mint fee for amount");
require(allowlistDropTimePassed() == true, "Allowlist drop time has not passed!");
_safeMint(_to, _amount, false);
}
/**
* @dev Mints tokens to an address using an allowlist.
* fee may or may not be required*
* @param _to address of the future owner of the token
* @param _amount number of tokens to mint
* @param _merkleProof merkle proof array
* @param _erc20TokenContract erc-20 token contract to mint with
*/
function mintToMultipleERC20AL(address _to, uint256 _amount, bytes32[] calldata _merkleProof, address _erc20TokenContract) public payable {
require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
require(_amount >= 1, "Must mint at least 1 token");
require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 2555");
require(allowlistDropTimePassed() == true, "Allowlist drop time has not passed!");
// ERC-20 Specific pre-flight checks
require(isApprovedForERC20Payments(_erc20TokenContract), "ERC-20 Token is not approved for minting!");
uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount;
IERC20 payableToken = IERC20(_erc20TokenContract);
require(payableToken.balanceOf(_to) >= tokensQtyToTransfer, "Buyer does not own enough of token to complete purchase");
require(payableToken.allowance(_to, address(this)) >= tokensQtyToTransfer, "Buyer did not approve enough of ERC-20 token to complete purchase");
require(hasSurcharge(), "Fee for ERC-20 payment not provided!");
bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer);
require(transferComplete, "ERC-20 token was unable to be transferred");
_safeMint(_to, _amount, false);
addSurcharge();
}
/**
* @dev Enable allowlist minting fully by enabling both flags
* This is a convenience function for the Rampp user
*/
function openAllowlistMint() public onlyTeamOrOwner {
enableAllowlistOnlyMode();
mintingOpen = true;
}
/**
* @dev Close allowlist minting fully by disabling both flags
* This is a convenience function for the Rampp user
*/
function closeAllowlistMint() public onlyTeamOrOwner {
disableAllowlistOnlyMode();
mintingOpen = false;
}
/**
* @dev Check if wallet over MAX_WALLET_MINTS
* @param _address address in question to check if minted count exceeds max
*/
function canMintAmount(address _address, uint256 _amount) public view returns(bool) {
require(_amount >= 1, "Amount must be greater than or equal to 1");
return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS;
}
/**
* @dev Update the maximum amount of tokens that can be minted by a unique wallet
* @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1
*/
function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner {
require(_newWalletMax >= 1, "Max mints per wallet must be at least 1");
MAX_WALLET_MINTS = _newWalletMax;
}
/**
* @dev Allows owner to set Max mints per tx
* @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1
*/
function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner {
require(_newMaxMint >= 1, "Max mint must be at least 1");
maxBatchSize = _newMaxMint;
}
function unveil(string memory _updatedTokenURI) public onlyTeamOrOwner {
require(isRevealed == false, "Tokens are already unveiled");
_baseTokenURI = _updatedTokenURI;
isRevealed = true;
}
function _baseURI() internal view virtual override returns(string memory) {
return _baseTokenURI;
}
function baseTokenURI() public view returns(string memory) {
return _baseTokenURI;
}
function setBaseURI(string calldata baseURI) external onlyTeamOrOwner {
_baseTokenURI = baseURI;
}
function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory) {
return ownershipOf(tokenId);
}
}
// File: contracts/MyOptiBoyzNftContract.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract MyOptiBoyzNftContract is RamppERC721A {
constructor() RamppERC721A("My OptiBoyzNFT", "OPTIBOYZ"){}
}
//*********************************************************************//
//*********************************************************************//
// Mintplex v2.1.0
//
// This smart contract was generated by mintplex.xyz.
// Mintplex allows creators like you to launch
// large scale NFT communities without code!
//
// Mintplex is not responsible for the content of this contract and
// hopes it is being used in a responsible and kind way.
// Mintplex is not associated or affiliated with this project.
// Twitter: @MintplexNFT ---- mintplex.xyz
//*********************************************************************//
//*********************************************************************//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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"_chargeAmountInTokens","type":"uint256"}],"name":"addOrUpdateERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowlistDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistDropTimePassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcAvailableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"chargeAmountForERC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlistDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"disableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"enableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enforceAllowlistDropTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enforcePublicDropTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20Payable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20AL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyERC20MintingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicDropTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicDropTimePassed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ramppSurchargeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ramppSurchargeFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetRamppSurchargeBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedApprovalAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setAllowlistDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isRestricted","type":"bool"}],"name":"setApprovalRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20Payable","type":"address"}],"name":"setERC20PayableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDropTime","type":"uint256"}],"name":"setPublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSurcharge","type":"uint256"}],"name":"setRamppSurcharge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"surchargePayableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"surchargePayableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"surchargePayableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_updatedTokenURI","type":"string"}],"name":"unveil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useAllowlistDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usePublicDropTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRamppSurcharges","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6000600b55600c80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a090815273f6befcfde07bbffe58a9a579804bd72d1e19272360c0526200005f90600e90600262000375565b506040805160208101909152600c546001600160a01b031681526200008990600f90600162000375565b50601080546001600160a01b03191673f6befcfde07bbffe58a9a579804bd72d1e1927231790556040805180820190915260058152605f6020820152620000d5906011906002620003df565b50604080516020810190915260648152620000f5906012906001620003df565b506002601381905560016014556000601581905566038d7ea4c680006016556017805460ff199081169091556019829055601b805461ffff19169055601c829055601d805482169055601e91909155601f805490911690911790556040805160608101909152603680825262005f2f602083013980516200017d916020919082019062000422565b506021805461ffff1916600117905560056022553480156200019e57600080fd5b506040518060400160405280600e81526020016d135e4813dc1d1a509bde5e93919560921b8152506040518060400160405280600881526020016727a82a24a127acad60c11b815250818160026109fb62000208620002026200032160201b60201c565b62000325565b60008111620002755760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002d75760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200026c565b8351620002ec90600490602087019062000422565b5082516200030290600590602086019062000422565b5060039190915560805250506001600281905560185550620004f39050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215620003cd579160200282015b82811115620003cd57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000396565b50620003db9291506200049f565b5090565b828054828255906000526020600020908101928215620003cd579160200282015b82811115620003cd578251829060ff1690559160200191906001019062000400565b8280546200043090620004b6565b90600052602060002090601f016020900481019282620004545760008555620003cd565b82601f106200046f57805160ff1916838001178555620003cd565b82800160010185558215620003cd579182015b82811115620003cd57825182559160200191906001019062000482565b5b80821115620003db5760008155600101620004a0565b600181811c90821680620004cb57607f821691505b60208210811415620004ed57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516159ef62000540600039600081816109050152818161126d015281816116f001528181611dd301528181611f8e01528181612407015281816128d501526138b501526159ef6000f3fe60806040526004361061058d5760003560e01c80637fb8c6d3116102d8578063c87b56dd11610180578063dfdedf69116100e7578063f05045c8116100a0578063f70be5e21161007a578063f70be5e21461106c578063f8c0fd2014611081578063fd19eaf014611096578063fe154b2d146110b657600080fd5b8063f05045c81461100c578063f2fde38b1461102c578063f70316631461104c57600080fd5b8063dfdedf6914610f34578063e692893314610f54578063e6c6990a14610f69578063e757223014610f83578063e985e9c514610fa3578063ee54be9614610fec57600080fd5b8063d547cfb711610139578063d547cfb714610eac578063d7224ba014610ec1578063d83ae33214610ed7578063d8d2412014610ef7578063dcd4aa8b14610f0c578063df213e8a14610f2157600080fd5b8063c87b56dd14610e02578063caa0f92a14610e22578063cacf084214610e37578063cfc86f7b14610e57578063cff4492314610e6c578063d266f3a914610e8c57600080fd5b806395d89b411161023f578063b88d4fde116101f8578063bbd8556b116101d2578063bbd8556b14610d8d578063bc05748e14610dad578063c3fb11c914610dc2578063c5815c4114610de257600080fd5b8063b88d4fde14610d43578063b94b237614610d63578063bb1876a814610d7857600080fd5b806395d89b4114610c99578063a1af10ca14610cae578063a1db978214610cce578063a22cb46514610cee578063a91bd1a914610d0e578063afe5608b14610d2e57600080fd5b80638da5cb5b116102915780638da5cb5b14610bb55780638f4bb49714610bd35780638ff4013f14610bed57806391b7f5ed14610c0d57806391c4b57414610c2d5780639231ab2a14610c4c57600080fd5b80637fb8c6d314610b1557806383c81c4114610b35578063853828b614610b55578063891bbe7314610b6a57806389f26d5814610b8a5780638d859f3e14610b9f57600080fd5b806340ccc0821161043b578063547520fe116103a25780636ba9fd381161035b57806370a082311161033557806370a0823114610ab8578063715018a614610ad8578063755edd1714610aed57806379ab3c8914610b0057600080fd5b80636ba9fd3814610a785780636d3de80614610a8d5780636eaf834414610aa257600080fd5b8063547520fe146109d657806355228ca7146109f657806355f804b314610a1057806358feaa5914610a3057806360986a7114610a455780636352211e14610a5857600080fd5b8063464c3428116103f4578063464c34281461092757806346f41ed5146109475780634783f0ef146109615780634ab8b5dd146109815780634f6ccce71461099757806354214f69146109b757600080fd5b806340ccc0821461086857806342842e0e1461088857806343696f18146108a8578063447abc7a146108c857806344eed881146108dd57806345c0f533146108f357600080fd5b806323b872dd116104fa5780632f745c59116104b35780633c0032541161048d5780633c0032541461080a5780633d3f9c571461081d5780633e07311c1461083d5780633e3e0b121461085357600080fd5b80632f745c591461079e57806333006786146107be57806338b90333146107de57600080fd5b806323b872dd14610707578063286c8137146107275780632913daa0146107475780632a000d4e1461075d5780632b5269b4146107735780632eb4a7ab1461078857600080fd5b8063081812fc1161054c578063081812fc14610689578063095ea7b3146106a95780630c863bb6146106c957806316b88a1d146106de57806318160ddd146105cf5780631aa4ba67146106f157600080fd5b8062641e48146105925780629a9b7b146105cf57806301ffc9a7146105f2578063043a2a40146106225780630644cefa1461065257806306fdde0314610667575b600080fd5b34801561059e57600080fd5b506105b26105ad366004614c79565b6110cc565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156105db57600080fd5b506105e46110f6565b6040519081526020016105c6565b3480156105fe57600080fd5b5061061261060d366004614ca8565b61110a565b60405190151581526020016105c6565b34801561062e57600080fd5b5061061261063d366004614ce1565b600a6020526000908152604090205460ff1681565b610665610660366004614cfc565b611177565b005b34801561067357600080fd5b5061067c6112f4565b6040516105c69190614d7e565b34801561069557600080fd5b506105b26106a4366004614c79565b611386565b3480156106b557600080fd5b506106656106c4366004614cfc565b61140f565b3480156106d557600080fd5b50610612611602565b6106656106ec366004614ddc565b611624565b3480156106fd57600080fd5b506105e4601e5481565b34801561071357600080fd5b50610665610722366004614e4a565b6119cd565b34801561073357600080fd5b506105e4610742366004614c79565b6119d8565b34801561075357600080fd5b506105e460035481565b34801561076957600080fd5b506105e460155481565b34801561077f57600080fd5b506106656119f9565b34801561079457600080fd5b506105e4601a5481565b3480156107aa57600080fd5b506105e46107b9366004614cfc565b611a97565b3480156107ca57600080fd5b506106126107d9366004614e86565b611c0e565b3480156107ea57600080fd5b50601f546107f89060ff1681565b60405160ff90911681526020016105c6565b610665610818366004614ed8565b611ce4565b34801561082957600080fd5b50610612610838366004614ce1565b611e85565b34801561084957600080fd5b506105e460135481565b34801561085f57600080fd5b50610665611ea8565b34801561087457600080fd5b50610665610883366004614cfc565b611ef9565b34801561089457600080fd5b506106656108a3366004614e4a565b611fea565b3480156108b457600080fd5b506106656108c3366004614ce1565b612005565b3480156108d457600080fd5b506105e4612102565b3480156108e957600080fd5b506105e4601c5481565b3480156108ff57600080fd5b506105e47f000000000000000000000000000000000000000000000000000000000000000081565b34801561093357600080fd5b50610665610942366004614ce1565b612112565b34801561095357600080fd5b506017546106129060ff1681565b34801561096d57600080fd5b5061066561097c366004614c79565b61217b565b34801561098d57600080fd5b506105e460225481565b3480156109a357600080fd5b506105e46109b2366004614c79565b612217565b3480156109c357600080fd5b5060215461061290610100900460ff1681565b3480156109e257600080fd5b506106656109f1366004614c79565b61227f565b348015610a0257600080fd5b50601d546106129060ff1681565b348015610a1c57600080fd5b50610665610a2b366004614f31565b61231a565b348015610a3c57600080fd5b50610665612370565b610665610a53366004614fa2565b6123c2565b348015610a6457600080fd5b506105b2610a73366004614c79565b612734565b348015610a8457600080fd5b50610665612746565b348015610a9957600080fd5b5061066561279a565b348015610aae57600080fd5b506105e460165481565b348015610ac457600080fd5b506105e4610ad3366004614ce1565b6127eb565b348015610ae457600080fd5b5061066561287c565b610665610afb366004614ce1565b6128b0565b348015610b0c57600080fd5b506106656129d8565b348015610b2157600080fd5b506010546105b2906001600160a01b031681565b348015610b4157600080fd5b50610665610b50366004614fec565b612a2c565b348015610b6157600080fd5b50610665612a9c565b348015610b7657600080fd5b506105b2610b85366004614c79565b612afb565b348015610b9657600080fd5b50610665612b0b565b348015610bab57600080fd5b506105e460195481565b348015610bc157600080fd5b506000546001600160a01b03166105b2565b348015610bdf57600080fd5b506021546106129060ff1681565b348015610bf957600080fd5b50610665610c08366004614c79565b612b5f565b348015610c1957600080fd5b50610665610c28366004614c79565b612c0a565b348015610c3957600080fd5b50601b5461061290610100900460ff1681565b348015610c5857600080fd5b50610c6c610c67366004614c79565b612c54565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016105c6565b348015610ca557600080fd5b5061067c612c71565b348015610cba57600080fd5b50610612610cc9366004614ce1565b612c80565b348015610cda57600080fd5b50610665610ce9366004614cfc565b612cfd565b348015610cfa57600080fd5b50610665610d09366004614fec565b612ebd565b348015610d1a57600080fd5b50610665610d29366004614ce1565b61305d565b348015610d3a57600080fd5b506106656131c4565b348015610d4f57600080fd5b50610665610d5e3660046150ae565b61320f565b348015610d6f57600080fd5b50610665613242565b348015610d8457600080fd5b50610665613293565b348015610d9957600080fd5b50610665610da8366004614ce1565b6132e4565b348015610db957600080fd5b506106656133ea565b348015610dce57600080fd5b50610665610ddd366004614c79565b613440565b348015610dee57600080fd5b50600c546105b2906001600160a01b031681565b348015610e0e57600080fd5b5061067c610e1d366004614c79565b61346f565b348015610e2e57600080fd5b506105e46134cd565b348015610e4357600080fd5b50610665610e52366004614ce1565b6134e7565b348015610e6357600080fd5b5061067c61354d565b348015610e7857600080fd5b50610665610e87366004615129565b6135db565b348015610e9857600080fd5b506105e4610ea7366004614ce1565b61369d565b348015610eb857600080fd5b5061067c613749565b348015610ecd57600080fd5b506105e4600b5481565b348015610ee357600080fd5b50610665610ef2366004615171565b613758565b348015610f0357600080fd5b506106126137cc565b348015610f1857600080fd5b506106656137e9565b610665610f2f366004614e86565b61382f565b348015610f4057600080fd5b50610665610f4f366004614ce1565b61397f565b348015610f6057600080fd5b50610665613a7b565b348015610f7557600080fd5b50601b546106129060ff1681565b348015610f8f57600080fd5b506105e4610f9e366004614c79565b613acf565b348015610faf57600080fd5b50610612610fbe3660046151b0565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ff857600080fd5b50610665611007366004614c79565b613adf565b34801561101857600080fd5b506105e4611027366004614c79565b613ba9565b34801561103857600080fd5b50610665611047366004614ce1565b613bb9565b34801561105857600080fd5b50610665611067366004614c79565b613c51565b34801561107857600080fd5b50610665613d1e565b34801561108d57600080fd5b50610665613d4f565b3480156110a257600080fd5b506106126110b1366004614cfc565b613d9a565b3480156110c257600080fd5b506105e460145481565b600f81815481106110dc57600080fd5b6000918252602090912001546001600160a01b0316905081565b60006111056002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b148061113b57506001600160e01b03198216635b5e139f60e01b145b8061115657506001600160e01b0319821663780e9d6360e01b145b8061117157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60175460ff16156111a35760405162461bcd60e51b815260040161119a906151e3565b60405180910390fd5b60018110156111c45760405162461bcd60e51b815260040161119a9061522e565b6003548111156111e65760405162461bcd60e51b815260040161119a90615265565b60215460ff16151560011480156112005750601b5460ff16155b61121c5760405162461bcd60e51b815260040161119a906152b3565b611224611602565b15156001146112455760405162461bcd60e51b815260040161119a906152f8565b61124f8282613d9a565b61126b5760405162461bcd60e51b815260040161119a9061532d565b7f0000000000000000000000000000000000000000000000000000000000000000816112956110f6565b61129f9190615393565b11156112bd5760405162461bcd60e51b815260040161119a906153ab565b6112c681613acf565b34146112e45760405162461bcd60e51b815260040161119a906153ee565b6112f082826000613e1f565b5050565b60606004805461130390615436565b80601f016020809104026020016040519081016040528092919081815260200182805461132f90615436565b801561137c5780601f106113515761010080835404028352916020019161137c565b820191906000526020600020905b81548152906001019060200180831161135f57829003601f168201915b5050505050905090565b600061139182613e3a565b6113f35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161119a565b506000908152600860205260409020546001600160a01b031690565b600061141a82612734565b9050806001600160a01b0316836001600160a01b031614156114895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161119a565b6001600160a01b0383166000908152600a602052604090205460ff16156115645760405162461bcd60e51b815260206004820152607f60248201527f45524337323152657374726963746564417070726f76616c3a2041646472657360448201527f7320746f20617070726f766520686173206265656e207265737472696374656460648201527f20627920636f6e7472616374206f776e657220616e64206973206e6f7420616c60848201527f6c6f77656420746f206265206d61726b656420666f7220617070726f76616c0060a482015260c40161119a565b336001600160a01b038216148061158057506115808133610fbe565b6115f25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161119a565b6115fd838383613e50565b505050565b601b54600090610100900460ff1661161a5750600190565b50601c5442101590565b601b5460ff1615156001148015611642575060215460ff1615156001145b61165e5760405162461bcd60e51b815260040161119a90615471565b611669858484611c0e565b6116855760405162461bcd60e51b815260040161119a906154a8565b60018410156116a65760405162461bcd60e51b815260040161119a9061522e565b6003548411156116c85760405162461bcd60e51b815260040161119a90615265565b6116d28585613d9a565b6116ee5760405162461bcd60e51b815260040161119a9061532d565b7f0000000000000000000000000000000000000000000000000000000000000000846117186110f6565b6117229190615393565b11156117405760405162461bcd60e51b815260040161119a906153ab565b6117486137cc565b15156001146117695760405162461bcd60e51b815260040161119a906154df565b61177281611e85565b61178e5760405162461bcd60e51b815260040161119a90615522565b60008461179a8361369d565b6117a4919061556b565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b1580156117ed57600080fd5b505afa158015611801573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611825919061558a565b10156118435760405162461bcd60e51b815260040161119a906155a3565b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561188d57600080fd5b505afa1580156118a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c5919061558a565b10156118e35760405162461bcd60e51b815260040161119a90615600565b60165434146119045760405162461bcd60e51b815260040161119a90615667565b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561195857600080fd5b505af115801561196c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199091906156ab565b9050806119af5760405162461bcd60e51b815260040161119a906156c8565b6119bb88886000613e1f565b6119c3613eac565b5050505050505050565b6115fd838383613ec7565b601181815481106119e857600080fd5b600091825260209091200154905081565b600c546001600160a01b03163314611a235760405162461bcd60e51b815260040161119a90615711565b600060155411611a8d5760405162461bcd60e51b815260206004820152602f60248201527f576974686472617761626c6556323a204e6f2052616d7070207375726368617260448201526e33b2b99034b7103130b630b731b29760891b606482015260840161119a565b611a95614247565b565b6000611aa2836127eb565b8210611afb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161119a565b6000611b056110f6565b905060008060005b83811015611bae576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611b5f57805192505b876001600160a01b0316836001600160a01b03161415611b9b5786841415611b8d5750935061117192505050565b83611b9781615748565b9450505b5080611ba681615748565b915050611b0d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161119a565b601a54600090611c605760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f742073657421000000000000000000604482015260640161119a565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050611cdb84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a5491508490506142e8565b95945050505050565b60175460ff1615611d075760405162461bcd60e51b815260040161119a906151e3565b601b5460ff1615156001148015611d25575060215460ff1615156001145b611d415760405162461bcd60e51b815260040161119a90615471565b611d4c848383611c0e565b611d685760405162461bcd60e51b815260040161119a906154a8565b6001831015611d895760405162461bcd60e51b815260040161119a9061522e565b600354831115611dab5760405162461bcd60e51b815260040161119a90615265565b611db58484613d9a565b611dd15760405162461bcd60e51b815260040161119a9061532d565b7f000000000000000000000000000000000000000000000000000000000000000083611dfb6110f6565b611e059190615393565b1115611e235760405162461bcd60e51b815260040161119a906153ab565b611e2c83613acf565b3414611e4a5760405162461bcd60e51b815260040161119a906153ee565b611e526137cc565b1515600114611e735760405162461bcd60e51b815260040161119a906154df565b611e7f84846000613e1f565b50505050565b6001600160a01b03166000908152600d602052604090205460ff16151560011490565b600080546001600160a01b0316339081149190611ec490612c80565b90508180611ecf5750805b611eeb5760405162461bcd60e51b815260040161119a90615763565b50506021805460ff19169055565b600080546001600160a01b0316339081149190611f1590612c80565b90508180611f205750805b611f3c5760405162461bcd60e51b815260040161119a90615763565b60008311611f8c5760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e0000000000604482015260640161119a565b7f000000000000000000000000000000000000000000000000000000000000000083611fb66110f6565b611fc09190615393565b1115611fde5760405162461bcd60e51b815260040161119a906153ab565b611e7f84846001613e1f565b6115fd8383836040518060200160405280600081525061320f565b6000546001600160a01b0316331461202f5760405162461bcd60e51b815260040161119a906157ac565b6001600160a01b0381166120775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161119a565b61208081612c80565b156120db5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b606482015260840161119a565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b60006015544761110591906157e1565b600080546001600160a01b031633908114919061212e90612c80565b905081806121395750805b6121555760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600080546001600160a01b031633908114919061219790612c80565b905081806121a25750805b6121be5760405162461bcd60e51b815260040161119a90615763565b601a548314156122105760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e676564210000604482015260640161119a565b5050601a55565b60006122216110f6565b821061227b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161119a565b5090565b600080546001600160a01b031633908114919061229b90612c80565b905081806122a65750805b6122c25760405162461bcd60e51b815260040161119a90615763565b60018310156123135760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c6561737420310000000000604482015260640161119a565b5050600355565b600080546001600160a01b031633908114919061233690612c80565b905081806123415750805b61235d5760405162461bcd60e51b815260040161119a90615763565b61236960208585614b70565b5050505050565b600080546001600160a01b031633908114919061238c90612c80565b905081806123975750805b6123b35760405162461bcd60e51b815260040161119a90615763565b5050601b805461ff0019169055565b60018210156123e35760405162461bcd60e51b815260040161119a9061522e565b6003548211156124055760405162461bcd60e51b815260040161119a90615265565b7f000000000000000000000000000000000000000000000000000000000000000061242e6134cd565b111561244c5760405162461bcd60e51b815260040161119a906153ab565b60215460ff16151560011480156124665750601b5460ff16155b6124825760405162461bcd60e51b815260040161119a906152b3565b61248a611602565b15156001146124ab5760405162461bcd60e51b815260040161119a906152f8565b6124b6836001613d9a565b6124d25760405162461bcd60e51b815260040161119a9061532d565b6124db81611e85565b6124f75760405162461bcd60e51b815260040161119a90615522565b6000826125038361369d565b61250d919061556b565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561255657600080fd5b505afa15801561256a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258e919061558a565b10156125ac5760405162461bcd60e51b815260040161119a906155a3565b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156125f657600080fd5b505afa15801561260a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262e919061558a565b101561264c5760405162461bcd60e51b815260040161119a90615600565b601654341461266d5760405162461bcd60e51b815260040161119a90615667565b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b1580156126c157600080fd5b505af11580156126d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f991906156ab565b9050806127185760405162461bcd60e51b815260040161119a906156c8565b61272486866000613e1f565b61272c613eac565b505050505050565b600061273f826142fe565b5192915050565b600080546001600160a01b031633908114919061276290612c80565b9050818061276d5750805b6127895760405162461bcd60e51b815260040161119a90615763565b50506021805460ff19166001179055565b600080546001600160a01b03163390811491906127b690612c80565b905081806127c15750805b6127dd5760405162461bcd60e51b815260040161119a90615763565b5050601b805460ff19169055565b60006001600160a01b0382166128575760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161119a565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b031633146128a65760405162461bcd60e51b815260040161119a906157ac565b611a95600061442c565b60175460ff16156128d35760405162461bcd60e51b815260040161119a906151e3565b7f00000000000000000000000000000000000000000000000000000000000000006128fc6134cd565b111561291a5760405162461bcd60e51b815260040161119a906153ab565b60215460ff16151560011480156129345750601b5460ff16155b6129505760405162461bcd60e51b815260040161119a906152b3565b612958611602565b15156001146129795760405162461bcd60e51b815260040161119a906152f8565b612984816001613d9a565b6129a05760405162461bcd60e51b815260040161119a9061532d565b6129aa6001613acf565b34146129c85760405162461bcd60e51b815260040161119a906157f8565b6129d58160016000613e1f565b50565b600080546001600160a01b03163390811491906129f490612c80565b905081806129ff5750805b612a1b5760405162461bcd60e51b815260040161119a90615763565b5050601b805460ff19166001179055565b600080546001600160a01b0316339081149190612a4890612c80565b90508180612a535750805b612a6f5760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600080546001600160a01b0316339081149190612ab890612c80565b90508180612ac35750805b612adf5760405162461bcd60e51b815260040161119a90615763565b6000612ae9612102565b11612af357600080fd5b6112f061447c565b600e81815481106110dc57600080fd5b600080546001600160a01b0316339081149190612b2790612c80565b90508180612b325750805b612b4e5760405162461bcd60e51b815260040161119a90615763565b50506017805460ff19166001179055565b600080546001600160a01b0316339081149190612b7b90612c80565b90508180612b865750805b612ba25760405162461bcd60e51b815260040161119a90615763565b6001831015612c035760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b606482015260840161119a565b5050602255565b600080546001600160a01b0316339081149190612c2690612c80565b90508180612c315750805b612c4d5760405162461bcd60e51b815260040161119a90615763565b5050601955565b6040805180820190915260008082526020820152611171826142fe565b60606005805461130390615436565b60006001600160a01b038216612cd85760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e00000000000000604482015260640161119a565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b600080546001600160a01b0316339081149190612d1990612c80565b90508180612d245750805b612d405760405162461bcd60e51b815260040161119a90615763565b60008311612d4d57600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a082319060240160206040518083038186803b158015612d9057600080fd5b505afa158015612da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dc8919061558a565b1015612e2e5760405162461bcd60e51b815260206004820152602f60248201527f576974686472617756323a20436f6e747261637420646f6573206e6f74206f7760448201526e6e20656e6f75676820746f6b656e7360881b606482015260840161119a565b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529082169063a9059cbb90604401602060405180830381600087803b158015612e7c57600080fd5b505af1158015612e90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb491906156ab565b50612369614247565b6001600160a01b038216331415612f165760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161119a565b6001600160a01b0382166000908152600a602052604090205460ff1615612ff15760405162461bcd60e51b815260206004820152607d60248201527f45524337323152657374726963746564417070726f76616c3a204f706572617460448201527f6f72206164647265737320686173206265656e2072657374726963746564206260648201527f7920636f6e7472616374206f776e657220616e64206973206e6f7420616c6c6f60848201527f77656420746f206265206d61726b656420666f7220617070726f76616c00000060a482015260c40161119a565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b031633908114919061307990612c80565b905081806130845750805b6130a05760405162461bcd60e51b815260040161119a90615763565b6001600160a01b03831661311c5760405162461bcd60e51b815260206004820152603c60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742063616e6e6f7420626520746865207a65726f206164647265737300000000606482015260840161119a565b6010546001600160a01b03848116911614156131a05760405162461bcd60e51b815260206004820152603b60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742069732073616d652061732063757272656e74207061796f75740000000000606482015260840161119a565b5050601080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b03163390811491906131e090612c80565b905081806131eb5750805b6132075760405162461bcd60e51b815260040161119a90615763565b611eeb61279a565b61321a848484613ec7565b613226848484846144f0565b611e7f5760405162461bcd60e51b815260040161119a9061583f565b600080546001600160a01b031633908114919061325e90612c80565b905081806132695750805b6132855760405162461bcd60e51b815260040161119a90615763565b50506017805460ff19169055565b600080546001600160a01b03163390811491906132af90612c80565b905081806132ba5750805b6132d65760405162461bcd60e51b815260040161119a90615763565b5050601d805460ff19169055565b600c546001600160a01b0316331461330e5760405162461bcd60e51b815260040161119a90615711565b600c546001600160a01b03828116911614156133885760405162461bcd60e51b815260206004820152603360248201527f576974686472617761626c6556323a204e65772052616d7070206164647265736044820152721cc81b5d5cdd08189948191a5999995c995b9d606a1b606482015260840161119a565b600c80546001600160a01b0319166001600160a01b038316179055600e80548291906000906133b9576133b9615892565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600080546001600160a01b031633908114919061340690612c80565b905081806134115750805b61342d5760405162461bcd60e51b815260040161119a90615763565b5050601b805461ff001916610100179055565b600c546001600160a01b0316331461346a5760405162461bcd60e51b815260040161119a90615711565b601655565b6060600061347b613749565b9050600081511161349b57604051806020016040528060008152506134c6565b806134a5846145fe565b6040516020016134b69291906158a8565b6040516020818303038152906040525b9392505050565b60006134dc6002546000190190565b611105906001615393565b600080546001600160a01b031633908114919061350390612c80565b9050818061350e5750805b61352a5760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03166000908152600d60205260409020805460ff19169055565b6020805461355a90615436565b80601f016020809104026020016040519081016040528092919081815260200182805461358690615436565b80156135d35780601f106135a8576101008083540402835291602001916135d3565b820191906000526020600020905b8154815290600101906020018083116135b657829003601f168201915b505050505081565b600080546001600160a01b03163390811491906135f790612c80565b905081806136025750805b61361e5760405162461bcd60e51b815260040161119a90615763565b602154610100900460ff16156136765760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c65640000000000604482015260640161119a565b82516136889060209081860190614bf0565b50506021805461ff0019166101001790555050565b60006136a882611e85565b61372a5760405162461bcd60e51b815260206004820152604760248201527f54686973204552432d323020636f6e7472616374206973206e6f74206170707260448201527f6f76656420746f206d616b65207061796d656e7473206f6e207468697320636f6064820152666e74726163742160c81b608482015260a40161119a565b506001600160a01b03166000908152600d602052604090206001015490565b60606020805461130390615436565b600080546001600160a01b031633908114919061377490612c80565b9050818061377f5750805b61379b5760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03929092166000908152600d60205260409020805460ff191691151591909117815560010155565b601d5460009060ff166137df5750600190565b50601e5442101590565b600c546001600160a01b031633146138135760405162461bcd60e51b815260040161119a90615711565b600061381d612102565b1161382757600080fd5b611a9561447c565b60175460ff16156138525760405162461bcd60e51b815260040161119a906151e3565b601b5460ff1615156001148015613870575060215460ff1615156001145b61388c5760405162461bcd60e51b815260040161119a90615471565b613897838383611c0e565b6138b35760405162461bcd60e51b815260040161119a906154a8565b7f00000000000000000000000000000000000000000000000000000000000000006138dc6134cd565b11156138fa5760405162461bcd60e51b815260040161119a906153ab565b613905836001613d9a565b6139215760405162461bcd60e51b815260040161119a9061532d565b61392b6001613acf565b34146139495760405162461bcd60e51b815260040161119a906157f8565b6139516137cc565b15156001146139725760405162461bcd60e51b815260040161119a906154df565b6115fd8360016000613e1f565b6000546001600160a01b031633146139a95760405162461bcd60e51b815260040161119a906157ac565b6001600160a01b0381166139f15760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161119a565b6139fa81612c80565b613a5a5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b606482015260840161119a565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600080546001600160a01b0316339081149190613a9790612c80565b90508180613aa25750805b613abe5760405162461bcd60e51b815260040161119a90615763565b5050601d805460ff19166001179055565b600081601954611171919061556b565b600080546001600160a01b0316339081149190613afb90612c80565b90508180613b065750805b613b225760405162461bcd60e51b815260040161119a90615763565b428311613ba25760405162461bcd60e51b815260206004820152604260248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c655075626c696344726f7054696d606482015261652160f01b608482015260a40161119a565b5050601c55565b601281815481106119e857600080fd5b6000546001600160a01b03163314613be35760405162461bcd60e51b815260040161119a906157ac565b6001600160a01b038116613c485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161119a565b6129d58161442c565b600080546001600160a01b0316339081149190613c6d90612c80565b90508180613c785750805b613c945760405162461bcd60e51b815260040161119a90615763565b428311613d175760405162461bcd60e51b815260206004820152604560248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c65416c6c6f776c69737444726f7060648201526454696d652160d81b608482015260a40161119a565b5050601e55565b600c546001600160a01b03163314613d485760405162461bcd60e51b815260040161119a90615711565b6000601555565b600080546001600160a01b0316339081149190613d6b90612c80565b90508180613d765750805b613d925760405162461bcd60e51b815260040161119a90615763565b6127896129d8565b60006001821015613dff5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b606482015260840161119a565b60225482613e0c856146fb565b613e169190615393565b11159392505050565b6115fd83838360405180602001604052806000815250614799565b6000816001111580156111715750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60165460156000828254613ec09190615393565b9091555050565b6000613ed2826142fe565b80519091506000906001600160a01b0316336001600160a01b03161480613f09575033613efe84611386565b6001600160a01b0316145b80613f1b57508151613f1b9033610fbe565b905080613f855760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161119a565b846001600160a01b031682600001516001600160a01b031614613ff95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161119a565b6001600160a01b03841661405d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161119a565b61406d6000848460000151613e50565b6001600160a01b038516600090815260076020526040812080546001929061409f9084906001600160801b03166158d7565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260076020526040812080546001945090926140eb918591166158ff565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055614172846001615393565b6000818152600660205260409020549091506001600160a01b03166142015761419a81613e3a565b156142015760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272c565b601554806142525750565b60005b6014548110156142df576142cd600f828154811061427557614275615892565b9060005260206000200160009054906101000a90046001600160a01b03166064601284815481106142a8576142a8615892565b9060005260206000200154856142be919061556b565b6142c89190615937565b614a66565b806142d781615748565b915050614255565b50506000601555565b6000826142f58584614afc565b14949350505050565b60408051808201909152600080825260208201528180600111158015614325575060025481105b156143cc576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215614376579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156143c7579392505050565b614376565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161119a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000614486612102565b905060005b6013548110156112f0576144de600e82815481106144ab576144ab615892565b9060005260206000200160009054906101000a90046001600160a01b03166064601184815481106142a8576142a8615892565b806144e881615748565b91505061448b565b60006001600160a01b0384163b156145f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061453490339089908890889060040161594b565b602060405180830381600087803b15801561454e57600080fd5b505af192505050801561457e575060408051601f3d908101601f1916820190925261457b91810190615988565b60015b6145d8573d8080156145ac576040519150601f19603f3d011682016040523d82523d6000602084013e6145b1565b606091505b5080516145d05760405162461bcd60e51b815260040161119a9061583f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506145f6565b5060015b949350505050565b6060816146225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561464c578061463681615748565b91506146459050600a83615937565b9150614626565b6000816001600160401b0381111561466657614666615023565b6040519080825280601f01601f191660200182016040528015614690576020820181803683370190505b5090505b84156145f6576146a56001836157e1565b91506146b2600a866159a5565b6146bd906030615393565b60f81b8183815181106146d2576146d2615892565b60200101906001600160f81b031916908160001a9053506146f4600a86615937565b9450614694565b60006001600160a01b03821661476d5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161119a565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166147fc5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161119a565b61480581613e3a565b156148525760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161119a565b826148b4576003548411156148b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161119a565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906149109088906158ff565b6001600160801b0316815260200185614929578661492c565b60005b836020015161493b91906158ff565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b86811015614a5a5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4614a1e60008984886144f0565b614a3a5760405162461bcd60e51b815260040161119a9061583f565b81614a4481615748565b9250508080614a5290615748565b9150506149d1565b50600255505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614ab3576040519150601f19603f3d011682016040523d82523d6000602084013e614ab8565b606091505b50509050806115fd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161119a565b600081815b8451811015614b68576000858281518110614b1e57614b1e615892565b60200260200101519050808311614b445760008381526020829052604090209250614b55565b600081815260208490526040902092505b5080614b6081615748565b915050614b01565b509392505050565b828054614b7c90615436565b90600052602060002090601f016020900481019282614b9e5760008555614be4565b82601f10614bb75782800160ff19823516178555614be4565b82800160010185558215614be4579182015b82811115614be4578235825591602001919060010190614bc9565b5061227b929150614c64565b828054614bfc90615436565b90600052602060002090601f016020900481019282614c1e5760008555614be4565b82601f10614c3757805160ff1916838001178555614be4565b82800160010185558215614be4579182015b82811115614be4578251825591602001919060010190614c49565b5b8082111561227b5760008155600101614c65565b600060208284031215614c8b57600080fd5b5035919050565b6001600160e01b0319811681146129d557600080fd5b600060208284031215614cba57600080fd5b81356134c681614c92565b80356001600160a01b0381168114614cdc57600080fd5b919050565b600060208284031215614cf357600080fd5b6134c682614cc5565b60008060408385031215614d0f57600080fd5b614d1883614cc5565b946020939093013593505050565b60005b83811015614d41578181015183820152602001614d29565b83811115611e7f5750506000910152565b60008151808452614d6a816020860160208601614d26565b601f01601f19169290920160200192915050565b6020815260006134c66020830184614d52565b60008083601f840112614da357600080fd5b5081356001600160401b03811115614dba57600080fd5b6020830191508360208260051b8501011115614dd557600080fd5b9250929050565b600080600080600060808688031215614df457600080fd5b614dfd86614cc5565b94506020860135935060408601356001600160401b03811115614e1f57600080fd5b614e2b88828901614d91565b9094509250614e3e905060608701614cc5565b90509295509295909350565b600080600060608486031215614e5f57600080fd5b614e6884614cc5565b9250614e7660208501614cc5565b9150604084013590509250925092565b600080600060408486031215614e9b57600080fd5b614ea484614cc5565b925060208401356001600160401b03811115614ebf57600080fd5b614ecb86828701614d91565b9497909650939450505050565b60008060008060608587031215614eee57600080fd5b614ef785614cc5565b93506020850135925060408501356001600160401b03811115614f1957600080fd5b614f2587828801614d91565b95989497509550505050565b60008060208385031215614f4457600080fd5b82356001600160401b0380821115614f5b57600080fd5b818501915085601f830112614f6f57600080fd5b813581811115614f7e57600080fd5b866020828501011115614f9057600080fd5b60209290920196919550909350505050565b600080600060608486031215614fb757600080fd5b614fc084614cc5565b925060208401359150614fd560408501614cc5565b90509250925092565b80151581146129d557600080fd5b60008060408385031215614fff57600080fd5b61500883614cc5565b9150602083013561501881614fde565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561505357615053615023565b604051601f8501601f19908116603f0116810190828211818310171561507b5761507b615023565b8160405280935085815286868601111561509457600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156150c457600080fd5b6150cd85614cc5565b93506150db60208601614cc5565b92506040850135915060608501356001600160401b038111156150fd57600080fd5b8501601f8101871361510e57600080fd5b61511d87823560208401615039565b91505092959194509250565b60006020828403121561513b57600080fd5b81356001600160401b0381111561515157600080fd5b8201601f8101841361516257600080fd5b6145f684823560208401615039565b60008060006060848603121561518657600080fd5b61518f84614cc5565b9250602084013561519f81614fde565b929592945050506040919091013590565b600080604083850312156151c357600080fd5b6151cc83614cc5565b91506151da60208401614cc5565b90509250929050565b6020808252602b908201527f4f6e6c79206d696e74696e672077697468204552432d323020746f6b656e732060408201526a34b99032b730b13632b21760a91b606082015260800190565b6020808252601a908201527f4d757374206d696e74206174206c65617374203120746f6b656e000000000000604082015260600190565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b6020808252818101527f5075626c69632064726f702074696d6520686173206e6f742070617373656421604082015260600190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156153a6576153a661537d565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203260408201526235353560e81b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061544a57607f821691505b6020821081141561546b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601b908201527f416c6c6f776c697374206d696e74696e6720697320636c6f7365640000000000604082015260600190565b6020808252601c908201527f41646472657373206973206e6f7420696e20416c6c6f776c6973742100000000604082015260600190565b60208082526023908201527f416c6c6f776c6973742064726f702074696d6520686173206e6f74207061737360408201526265642160e81b606082015260800190565b60208082526029908201527f4552432d323020546f6b656e206973206e6f7420617070726f76656420666f72604082015268206d696e74696e672160b81b606082015260800190565b60008160001904831182151516156155855761558561537d565b500290565b60006020828403121561559c57600080fd5b5051919050565b60208082526037908201527f427579657220646f6573206e6f74206f776e20656e6f756768206f6620746f6b60408201527f656e20746f20636f6d706c657465207075726368617365000000000000000000606082015260800190565b60208082526041908201527f427579657220646964206e6f7420617070726f766520656e6f756768206f662060408201527f4552432d323020746f6b656e20746f20636f6d706c65746520707572636861736060820152606560f81b608082015260a00190565b60208082526024908201527f46656520666f72204552432d3230207061796d656e74206e6f742070726f76696040820152636465642160e01b606082015260800190565b6000602082840312156156bd57600080fd5b81516134c681614fde565b60208082526029908201527f4552432d323020746f6b656e2077617320756e61626c6520746f206265207472604082015268185b9cd9995c9c995960ba1b606082015260800190565b6020808252601c908201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604082015260600190565b600060001982141561575c5761575c61537d565b5060010190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000828210156157f3576157f361537d565b500390565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600083516158ba818460208801614d26565b8351908301906158ce818360208801614d26565b01949350505050565b60006001600160801b03838116908316818110156158f7576158f761537d565b039392505050565b60006001600160801b038083168185168083038211156158ce576158ce61537d565b634e487b7160e01b600052601260045260246000fd5b60008261594657615946615921565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061597e90830184614d52565b9695505050505050565b60006020828403121561599a57600080fd5b81516134c681614c92565b6000826159b4576159b4615921565b50069056fea2646970667358221220a85bfba6080cfed704ac164c5aca5d346e7fc153e18d0ac54b7c580466e1f00f64736f6c63430008090033697066733a2f2f516d5364723552325064736d4457336d78317a6b664d46476f686558676f6b374765567938634e3471765a4575512f000000000000000000000000f6befcfde07bbffe58a9a579804bd72d1e192723
Deployed Bytecode
0x60806040526004361061058d5760003560e01c80637fb8c6d3116102d8578063c87b56dd11610180578063dfdedf69116100e7578063f05045c8116100a0578063f70be5e21161007a578063f70be5e21461106c578063f8c0fd2014611081578063fd19eaf014611096578063fe154b2d146110b657600080fd5b8063f05045c81461100c578063f2fde38b1461102c578063f70316631461104c57600080fd5b8063dfdedf6914610f34578063e692893314610f54578063e6c6990a14610f69578063e757223014610f83578063e985e9c514610fa3578063ee54be9614610fec57600080fd5b8063d547cfb711610139578063d547cfb714610eac578063d7224ba014610ec1578063d83ae33214610ed7578063d8d2412014610ef7578063dcd4aa8b14610f0c578063df213e8a14610f2157600080fd5b8063c87b56dd14610e02578063caa0f92a14610e22578063cacf084214610e37578063cfc86f7b14610e57578063cff4492314610e6c578063d266f3a914610e8c57600080fd5b806395d89b411161023f578063b88d4fde116101f8578063bbd8556b116101d2578063bbd8556b14610d8d578063bc05748e14610dad578063c3fb11c914610dc2578063c5815c4114610de257600080fd5b8063b88d4fde14610d43578063b94b237614610d63578063bb1876a814610d7857600080fd5b806395d89b4114610c99578063a1af10ca14610cae578063a1db978214610cce578063a22cb46514610cee578063a91bd1a914610d0e578063afe5608b14610d2e57600080fd5b80638da5cb5b116102915780638da5cb5b14610bb55780638f4bb49714610bd35780638ff4013f14610bed57806391b7f5ed14610c0d57806391c4b57414610c2d5780639231ab2a14610c4c57600080fd5b80637fb8c6d314610b1557806383c81c4114610b35578063853828b614610b55578063891bbe7314610b6a57806389f26d5814610b8a5780638d859f3e14610b9f57600080fd5b806340ccc0821161043b578063547520fe116103a25780636ba9fd381161035b57806370a082311161033557806370a0823114610ab8578063715018a614610ad8578063755edd1714610aed57806379ab3c8914610b0057600080fd5b80636ba9fd3814610a785780636d3de80614610a8d5780636eaf834414610aa257600080fd5b8063547520fe146109d657806355228ca7146109f657806355f804b314610a1057806358feaa5914610a3057806360986a7114610a455780636352211e14610a5857600080fd5b8063464c3428116103f4578063464c34281461092757806346f41ed5146109475780634783f0ef146109615780634ab8b5dd146109815780634f6ccce71461099757806354214f69146109b757600080fd5b806340ccc0821461086857806342842e0e1461088857806343696f18146108a8578063447abc7a146108c857806344eed881146108dd57806345c0f533146108f357600080fd5b806323b872dd116104fa5780632f745c59116104b35780633c0032541161048d5780633c0032541461080a5780633d3f9c571461081d5780633e07311c1461083d5780633e3e0b121461085357600080fd5b80632f745c591461079e57806333006786146107be57806338b90333146107de57600080fd5b806323b872dd14610707578063286c8137146107275780632913daa0146107475780632a000d4e1461075d5780632b5269b4146107735780632eb4a7ab1461078857600080fd5b8063081812fc1161054c578063081812fc14610689578063095ea7b3146106a95780630c863bb6146106c957806316b88a1d146106de57806318160ddd146105cf5780631aa4ba67146106f157600080fd5b8062641e48146105925780629a9b7b146105cf57806301ffc9a7146105f2578063043a2a40146106225780630644cefa1461065257806306fdde0314610667575b600080fd5b34801561059e57600080fd5b506105b26105ad366004614c79565b6110cc565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156105db57600080fd5b506105e46110f6565b6040519081526020016105c6565b3480156105fe57600080fd5b5061061261060d366004614ca8565b61110a565b60405190151581526020016105c6565b34801561062e57600080fd5b5061061261063d366004614ce1565b600a6020526000908152604090205460ff1681565b610665610660366004614cfc565b611177565b005b34801561067357600080fd5b5061067c6112f4565b6040516105c69190614d7e565b34801561069557600080fd5b506105b26106a4366004614c79565b611386565b3480156106b557600080fd5b506106656106c4366004614cfc565b61140f565b3480156106d557600080fd5b50610612611602565b6106656106ec366004614ddc565b611624565b3480156106fd57600080fd5b506105e4601e5481565b34801561071357600080fd5b50610665610722366004614e4a565b6119cd565b34801561073357600080fd5b506105e4610742366004614c79565b6119d8565b34801561075357600080fd5b506105e460035481565b34801561076957600080fd5b506105e460155481565b34801561077f57600080fd5b506106656119f9565b34801561079457600080fd5b506105e4601a5481565b3480156107aa57600080fd5b506105e46107b9366004614cfc565b611a97565b3480156107ca57600080fd5b506106126107d9366004614e86565b611c0e565b3480156107ea57600080fd5b50601f546107f89060ff1681565b60405160ff90911681526020016105c6565b610665610818366004614ed8565b611ce4565b34801561082957600080fd5b50610612610838366004614ce1565b611e85565b34801561084957600080fd5b506105e460135481565b34801561085f57600080fd5b50610665611ea8565b34801561087457600080fd5b50610665610883366004614cfc565b611ef9565b34801561089457600080fd5b506106656108a3366004614e4a565b611fea565b3480156108b457600080fd5b506106656108c3366004614ce1565b612005565b3480156108d457600080fd5b506105e4612102565b3480156108e957600080fd5b506105e4601c5481565b3480156108ff57600080fd5b506105e47f00000000000000000000000000000000000000000000000000000000000009fb81565b34801561093357600080fd5b50610665610942366004614ce1565b612112565b34801561095357600080fd5b506017546106129060ff1681565b34801561096d57600080fd5b5061066561097c366004614c79565b61217b565b34801561098d57600080fd5b506105e460225481565b3480156109a357600080fd5b506105e46109b2366004614c79565b612217565b3480156109c357600080fd5b5060215461061290610100900460ff1681565b3480156109e257600080fd5b506106656109f1366004614c79565b61227f565b348015610a0257600080fd5b50601d546106129060ff1681565b348015610a1c57600080fd5b50610665610a2b366004614f31565b61231a565b348015610a3c57600080fd5b50610665612370565b610665610a53366004614fa2565b6123c2565b348015610a6457600080fd5b506105b2610a73366004614c79565b612734565b348015610a8457600080fd5b50610665612746565b348015610a9957600080fd5b5061066561279a565b348015610aae57600080fd5b506105e460165481565b348015610ac457600080fd5b506105e4610ad3366004614ce1565b6127eb565b348015610ae457600080fd5b5061066561287c565b610665610afb366004614ce1565b6128b0565b348015610b0c57600080fd5b506106656129d8565b348015610b2157600080fd5b506010546105b2906001600160a01b031681565b348015610b4157600080fd5b50610665610b50366004614fec565b612a2c565b348015610b6157600080fd5b50610665612a9c565b348015610b7657600080fd5b506105b2610b85366004614c79565b612afb565b348015610b9657600080fd5b50610665612b0b565b348015610bab57600080fd5b506105e460195481565b348015610bc157600080fd5b506000546001600160a01b03166105b2565b348015610bdf57600080fd5b506021546106129060ff1681565b348015610bf957600080fd5b50610665610c08366004614c79565b612b5f565b348015610c1957600080fd5b50610665610c28366004614c79565b612c0a565b348015610c3957600080fd5b50601b5461061290610100900460ff1681565b348015610c5857600080fd5b50610c6c610c67366004614c79565b612c54565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016105c6565b348015610ca557600080fd5b5061067c612c71565b348015610cba57600080fd5b50610612610cc9366004614ce1565b612c80565b348015610cda57600080fd5b50610665610ce9366004614cfc565b612cfd565b348015610cfa57600080fd5b50610665610d09366004614fec565b612ebd565b348015610d1a57600080fd5b50610665610d29366004614ce1565b61305d565b348015610d3a57600080fd5b506106656131c4565b348015610d4f57600080fd5b50610665610d5e3660046150ae565b61320f565b348015610d6f57600080fd5b50610665613242565b348015610d8457600080fd5b50610665613293565b348015610d9957600080fd5b50610665610da8366004614ce1565b6132e4565b348015610db957600080fd5b506106656133ea565b348015610dce57600080fd5b50610665610ddd366004614c79565b613440565b348015610dee57600080fd5b50600c546105b2906001600160a01b031681565b348015610e0e57600080fd5b5061067c610e1d366004614c79565b61346f565b348015610e2e57600080fd5b506105e46134cd565b348015610e4357600080fd5b50610665610e52366004614ce1565b6134e7565b348015610e6357600080fd5b5061067c61354d565b348015610e7857600080fd5b50610665610e87366004615129565b6135db565b348015610e9857600080fd5b506105e4610ea7366004614ce1565b61369d565b348015610eb857600080fd5b5061067c613749565b348015610ecd57600080fd5b506105e4600b5481565b348015610ee357600080fd5b50610665610ef2366004615171565b613758565b348015610f0357600080fd5b506106126137cc565b348015610f1857600080fd5b506106656137e9565b610665610f2f366004614e86565b61382f565b348015610f4057600080fd5b50610665610f4f366004614ce1565b61397f565b348015610f6057600080fd5b50610665613a7b565b348015610f7557600080fd5b50601b546106129060ff1681565b348015610f8f57600080fd5b506105e4610f9e366004614c79565b613acf565b348015610faf57600080fd5b50610612610fbe3660046151b0565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ff857600080fd5b50610665611007366004614c79565b613adf565b34801561101857600080fd5b506105e4611027366004614c79565b613ba9565b34801561103857600080fd5b50610665611047366004614ce1565b613bb9565b34801561105857600080fd5b50610665611067366004614c79565b613c51565b34801561107857600080fd5b50610665613d1e565b34801561108d57600080fd5b50610665613d4f565b3480156110a257600080fd5b506106126110b1366004614cfc565b613d9a565b3480156110c257600080fd5b506105e460145481565b600f81815481106110dc57600080fd5b6000918252602090912001546001600160a01b0316905081565b60006111056002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b148061113b57506001600160e01b03198216635b5e139f60e01b145b8061115657506001600160e01b0319821663780e9d6360e01b145b8061117157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60175460ff16156111a35760405162461bcd60e51b815260040161119a906151e3565b60405180910390fd5b60018110156111c45760405162461bcd60e51b815260040161119a9061522e565b6003548111156111e65760405162461bcd60e51b815260040161119a90615265565b60215460ff16151560011480156112005750601b5460ff16155b61121c5760405162461bcd60e51b815260040161119a906152b3565b611224611602565b15156001146112455760405162461bcd60e51b815260040161119a906152f8565b61124f8282613d9a565b61126b5760405162461bcd60e51b815260040161119a9061532d565b7f00000000000000000000000000000000000000000000000000000000000009fb816112956110f6565b61129f9190615393565b11156112bd5760405162461bcd60e51b815260040161119a906153ab565b6112c681613acf565b34146112e45760405162461bcd60e51b815260040161119a906153ee565b6112f082826000613e1f565b5050565b60606004805461130390615436565b80601f016020809104026020016040519081016040528092919081815260200182805461132f90615436565b801561137c5780601f106113515761010080835404028352916020019161137c565b820191906000526020600020905b81548152906001019060200180831161135f57829003601f168201915b5050505050905090565b600061139182613e3a565b6113f35760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161119a565b506000908152600860205260409020546001600160a01b031690565b600061141a82612734565b9050806001600160a01b0316836001600160a01b031614156114895760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161119a565b6001600160a01b0383166000908152600a602052604090205460ff16156115645760405162461bcd60e51b815260206004820152607f60248201527f45524337323152657374726963746564417070726f76616c3a2041646472657360448201527f7320746f20617070726f766520686173206265656e207265737472696374656460648201527f20627920636f6e7472616374206f776e657220616e64206973206e6f7420616c60848201527f6c6f77656420746f206265206d61726b656420666f7220617070726f76616c0060a482015260c40161119a565b336001600160a01b038216148061158057506115808133610fbe565b6115f25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161119a565b6115fd838383613e50565b505050565b601b54600090610100900460ff1661161a5750600190565b50601c5442101590565b601b5460ff1615156001148015611642575060215460ff1615156001145b61165e5760405162461bcd60e51b815260040161119a90615471565b611669858484611c0e565b6116855760405162461bcd60e51b815260040161119a906154a8565b60018410156116a65760405162461bcd60e51b815260040161119a9061522e565b6003548411156116c85760405162461bcd60e51b815260040161119a90615265565b6116d28585613d9a565b6116ee5760405162461bcd60e51b815260040161119a9061532d565b7f00000000000000000000000000000000000000000000000000000000000009fb846117186110f6565b6117229190615393565b11156117405760405162461bcd60e51b815260040161119a906153ab565b6117486137cc565b15156001146117695760405162461bcd60e51b815260040161119a906154df565b61177281611e85565b61178e5760405162461bcd60e51b815260040161119a90615522565b60008461179a8361369d565b6117a4919061556b565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a082319060240160206040518083038186803b1580156117ed57600080fd5b505afa158015611801573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611825919061558a565b10156118435760405162461bcd60e51b815260040161119a906155a3565b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b15801561188d57600080fd5b505afa1580156118a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118c5919061558a565b10156118e35760405162461bcd60e51b815260040161119a90615600565b60165434146119045760405162461bcd60e51b815260040161119a90615667565b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b15801561195857600080fd5b505af115801561196c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199091906156ab565b9050806119af5760405162461bcd60e51b815260040161119a906156c8565b6119bb88886000613e1f565b6119c3613eac565b5050505050505050565b6115fd838383613ec7565b601181815481106119e857600080fd5b600091825260209091200154905081565b600c546001600160a01b03163314611a235760405162461bcd60e51b815260040161119a90615711565b600060155411611a8d5760405162461bcd60e51b815260206004820152602f60248201527f576974686472617761626c6556323a204e6f2052616d7070207375726368617260448201526e33b2b99034b7103130b630b731b29760891b606482015260840161119a565b611a95614247565b565b6000611aa2836127eb565b8210611afb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161119a565b6000611b056110f6565b905060008060005b83811015611bae576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611b5f57805192505b876001600160a01b0316836001600160a01b03161415611b9b5786841415611b8d5750935061117192505050565b83611b9781615748565b9450505b5080611ba681615748565b915050611b0d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161119a565b601a54600090611c605760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f742073657421000000000000000000604482015260640161119a565b6040516bffffffffffffffffffffffff19606086901b166020820152600090603401604051602081830303815290604052805190602001209050611cdb84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601a5491508490506142e8565b95945050505050565b60175460ff1615611d075760405162461bcd60e51b815260040161119a906151e3565b601b5460ff1615156001148015611d25575060215460ff1615156001145b611d415760405162461bcd60e51b815260040161119a90615471565b611d4c848383611c0e565b611d685760405162461bcd60e51b815260040161119a906154a8565b6001831015611d895760405162461bcd60e51b815260040161119a9061522e565b600354831115611dab5760405162461bcd60e51b815260040161119a90615265565b611db58484613d9a565b611dd15760405162461bcd60e51b815260040161119a9061532d565b7f00000000000000000000000000000000000000000000000000000000000009fb83611dfb6110f6565b611e059190615393565b1115611e235760405162461bcd60e51b815260040161119a906153ab565b611e2c83613acf565b3414611e4a5760405162461bcd60e51b815260040161119a906153ee565b611e526137cc565b1515600114611e735760405162461bcd60e51b815260040161119a906154df565b611e7f84846000613e1f565b50505050565b6001600160a01b03166000908152600d602052604090205460ff16151560011490565b600080546001600160a01b0316339081149190611ec490612c80565b90508180611ecf5750805b611eeb5760405162461bcd60e51b815260040161119a90615763565b50506021805460ff19169055565b600080546001600160a01b0316339081149190611f1590612c80565b90508180611f205750805b611f3c5760405162461bcd60e51b815260040161119a90615763565b60008311611f8c5760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e0000000000604482015260640161119a565b7f00000000000000000000000000000000000000000000000000000000000009fb83611fb66110f6565b611fc09190615393565b1115611fde5760405162461bcd60e51b815260040161119a906153ab565b611e7f84846001613e1f565b6115fd8383836040518060200160405280600081525061320f565b6000546001600160a01b0316331461202f5760405162461bcd60e51b815260040161119a906157ac565b6001600160a01b0381166120775760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161119a565b61208081612c80565b156120db5760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b606482015260840161119a565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b60006015544761110591906157e1565b600080546001600160a01b031633908114919061212e90612c80565b905081806121395750805b6121555760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03166000908152600d60205260409020805460ff19166001179055565b600080546001600160a01b031633908114919061219790612c80565b905081806121a25750805b6121be5760405162461bcd60e51b815260040161119a90615763565b601a548314156122105760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e676564210000604482015260640161119a565b5050601a55565b60006122216110f6565b821061227b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161119a565b5090565b600080546001600160a01b031633908114919061229b90612c80565b905081806122a65750805b6122c25760405162461bcd60e51b815260040161119a90615763565b60018310156123135760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c6561737420310000000000604482015260640161119a565b5050600355565b600080546001600160a01b031633908114919061233690612c80565b905081806123415750805b61235d5760405162461bcd60e51b815260040161119a90615763565b61236960208585614b70565b5050505050565b600080546001600160a01b031633908114919061238c90612c80565b905081806123975750805b6123b35760405162461bcd60e51b815260040161119a90615763565b5050601b805461ff0019169055565b60018210156123e35760405162461bcd60e51b815260040161119a9061522e565b6003548211156124055760405162461bcd60e51b815260040161119a90615265565b7f00000000000000000000000000000000000000000000000000000000000009fb61242e6134cd565b111561244c5760405162461bcd60e51b815260040161119a906153ab565b60215460ff16151560011480156124665750601b5460ff16155b6124825760405162461bcd60e51b815260040161119a906152b3565b61248a611602565b15156001146124ab5760405162461bcd60e51b815260040161119a906152f8565b6124b6836001613d9a565b6124d25760405162461bcd60e51b815260040161119a9061532d565b6124db81611e85565b6124f75760405162461bcd60e51b815260040161119a90615522565b6000826125038361369d565b61250d919061556b565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a082319060240160206040518083038186803b15801561255657600080fd5b505afa15801561256a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061258e919061558a565b10156125ac5760405162461bcd60e51b815260040161119a906155a3565b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e9060440160206040518083038186803b1580156125f657600080fd5b505afa15801561260a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262e919061558a565b101561264c5760405162461bcd60e51b815260040161119a90615600565b601654341461266d5760405162461bcd60e51b815260040161119a90615667565b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd90606401602060405180830381600087803b1580156126c157600080fd5b505af11580156126d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126f991906156ab565b9050806127185760405162461bcd60e51b815260040161119a906156c8565b61272486866000613e1f565b61272c613eac565b505050505050565b600061273f826142fe565b5192915050565b600080546001600160a01b031633908114919061276290612c80565b9050818061276d5750805b6127895760405162461bcd60e51b815260040161119a90615763565b50506021805460ff19166001179055565b600080546001600160a01b03163390811491906127b690612c80565b905081806127c15750805b6127dd5760405162461bcd60e51b815260040161119a90615763565b5050601b805460ff19169055565b60006001600160a01b0382166128575760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161119a565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b031633146128a65760405162461bcd60e51b815260040161119a906157ac565b611a95600061442c565b60175460ff16156128d35760405162461bcd60e51b815260040161119a906151e3565b7f00000000000000000000000000000000000000000000000000000000000009fb6128fc6134cd565b111561291a5760405162461bcd60e51b815260040161119a906153ab565b60215460ff16151560011480156129345750601b5460ff16155b6129505760405162461bcd60e51b815260040161119a906152b3565b612958611602565b15156001146129795760405162461bcd60e51b815260040161119a906152f8565b612984816001613d9a565b6129a05760405162461bcd60e51b815260040161119a9061532d565b6129aa6001613acf565b34146129c85760405162461bcd60e51b815260040161119a906157f8565b6129d58160016000613e1f565b50565b600080546001600160a01b03163390811491906129f490612c80565b905081806129ff5750805b612a1b5760405162461bcd60e51b815260040161119a90615763565b5050601b805460ff19166001179055565b600080546001600160a01b0316339081149190612a4890612c80565b90508180612a535750805b612a6f5760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b600080546001600160a01b0316339081149190612ab890612c80565b90508180612ac35750805b612adf5760405162461bcd60e51b815260040161119a90615763565b6000612ae9612102565b11612af357600080fd5b6112f061447c565b600e81815481106110dc57600080fd5b600080546001600160a01b0316339081149190612b2790612c80565b90508180612b325750805b612b4e5760405162461bcd60e51b815260040161119a90615763565b50506017805460ff19166001179055565b600080546001600160a01b0316339081149190612b7b90612c80565b90508180612b865750805b612ba25760405162461bcd60e51b815260040161119a90615763565b6001831015612c035760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b606482015260840161119a565b5050602255565b600080546001600160a01b0316339081149190612c2690612c80565b90508180612c315750805b612c4d5760405162461bcd60e51b815260040161119a90615763565b5050601955565b6040805180820190915260008082526020820152611171826142fe565b60606005805461130390615436565b60006001600160a01b038216612cd85760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e00000000000000604482015260640161119a565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b600080546001600160a01b0316339081149190612d1990612c80565b90508180612d245750805b612d405760405162461bcd60e51b815260040161119a90615763565b60008311612d4d57600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a082319060240160206040518083038186803b158015612d9057600080fd5b505afa158015612da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dc8919061558a565b1015612e2e5760405162461bcd60e51b815260206004820152602f60248201527f576974686472617756323a20436f6e747261637420646f6573206e6f74206f7760448201526e6e20656e6f75676820746f6b656e7360881b606482015260840161119a565b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690529082169063a9059cbb90604401602060405180830381600087803b158015612e7c57600080fd5b505af1158015612e90573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612eb491906156ab565b50612369614247565b6001600160a01b038216331415612f165760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161119a565b6001600160a01b0382166000908152600a602052604090205460ff1615612ff15760405162461bcd60e51b815260206004820152607d60248201527f45524337323152657374726963746564417070726f76616c3a204f706572617460448201527f6f72206164647265737320686173206265656e2072657374726963746564206260648201527f7920636f6e7472616374206f776e657220616e64206973206e6f7420616c6c6f60848201527f77656420746f206265206d61726b656420666f7220617070726f76616c00000060a482015260c40161119a565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b031633908114919061307990612c80565b905081806130845750805b6130a05760405162461bcd60e51b815260040161119a90615763565b6001600160a01b03831661311c5760405162461bcd60e51b815260206004820152603c60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742063616e6e6f7420626520746865207a65726f206164647265737300000000606482015260840161119a565b6010546001600160a01b03848116911614156131a05760405162461bcd60e51b815260206004820152603b60248201527f576974686472617761626c6556323a206e6577204552432d3230207061796f7560448201527f742069732073616d652061732063757272656e74207061796f75740000000000606482015260840161119a565b5050601080546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b03163390811491906131e090612c80565b905081806131eb5750805b6132075760405162461bcd60e51b815260040161119a90615763565b611eeb61279a565b61321a848484613ec7565b613226848484846144f0565b611e7f5760405162461bcd60e51b815260040161119a9061583f565b600080546001600160a01b031633908114919061325e90612c80565b905081806132695750805b6132855760405162461bcd60e51b815260040161119a90615763565b50506017805460ff19169055565b600080546001600160a01b03163390811491906132af90612c80565b905081806132ba5750805b6132d65760405162461bcd60e51b815260040161119a90615763565b5050601d805460ff19169055565b600c546001600160a01b0316331461330e5760405162461bcd60e51b815260040161119a90615711565b600c546001600160a01b03828116911614156133885760405162461bcd60e51b815260206004820152603360248201527f576974686472617761626c6556323a204e65772052616d7070206164647265736044820152721cc81b5d5cdd08189948191a5999995c995b9d606a1b606482015260840161119a565b600c80546001600160a01b0319166001600160a01b038316179055600e80548291906000906133b9576133b9615892565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600080546001600160a01b031633908114919061340690612c80565b905081806134115750805b61342d5760405162461bcd60e51b815260040161119a90615763565b5050601b805461ff001916610100179055565b600c546001600160a01b0316331461346a5760405162461bcd60e51b815260040161119a90615711565b601655565b6060600061347b613749565b9050600081511161349b57604051806020016040528060008152506134c6565b806134a5846145fe565b6040516020016134b69291906158a8565b6040516020818303038152906040525b9392505050565b60006134dc6002546000190190565b611105906001615393565b600080546001600160a01b031633908114919061350390612c80565b9050818061350e5750805b61352a5760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03166000908152600d60205260409020805460ff19169055565b6020805461355a90615436565b80601f016020809104026020016040519081016040528092919081815260200182805461358690615436565b80156135d35780601f106135a8576101008083540402835291602001916135d3565b820191906000526020600020905b8154815290600101906020018083116135b657829003601f168201915b505050505081565b600080546001600160a01b03163390811491906135f790612c80565b905081806136025750805b61361e5760405162461bcd60e51b815260040161119a90615763565b602154610100900460ff16156136765760405162461bcd60e51b815260206004820152601b60248201527f546f6b656e732061726520616c726561647920756e7665696c65640000000000604482015260640161119a565b82516136889060209081860190614bf0565b50506021805461ff0019166101001790555050565b60006136a882611e85565b61372a5760405162461bcd60e51b815260206004820152604760248201527f54686973204552432d323020636f6e7472616374206973206e6f74206170707260448201527f6f76656420746f206d616b65207061796d656e7473206f6e207468697320636f6064820152666e74726163742160c81b608482015260a40161119a565b506001600160a01b03166000908152600d602052604090206001015490565b60606020805461130390615436565b600080546001600160a01b031633908114919061377490612c80565b9050818061377f5750805b61379b5760405162461bcd60e51b815260040161119a90615763565b50506001600160a01b03929092166000908152600d60205260409020805460ff191691151591909117815560010155565b601d5460009060ff166137df5750600190565b50601e5442101590565b600c546001600160a01b031633146138135760405162461bcd60e51b815260040161119a90615711565b600061381d612102565b1161382757600080fd5b611a9561447c565b60175460ff16156138525760405162461bcd60e51b815260040161119a906151e3565b601b5460ff1615156001148015613870575060215460ff1615156001145b61388c5760405162461bcd60e51b815260040161119a90615471565b613897838383611c0e565b6138b35760405162461bcd60e51b815260040161119a906154a8565b7f00000000000000000000000000000000000000000000000000000000000009fb6138dc6134cd565b11156138fa5760405162461bcd60e51b815260040161119a906153ab565b613905836001613d9a565b6139215760405162461bcd60e51b815260040161119a9061532d565b61392b6001613acf565b34146139495760405162461bcd60e51b815260040161119a906157f8565b6139516137cc565b15156001146139725760405162461bcd60e51b815260040161119a906154df565b6115fd8360016000613e1f565b6000546001600160a01b031633146139a95760405162461bcd60e51b815260040161119a906157ac565b6001600160a01b0381166139f15760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b604482015260640161119a565b6139fa81612c80565b613a5a5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b606482015260840161119a565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600080546001600160a01b0316339081149190613a9790612c80565b90508180613aa25750805b613abe5760405162461bcd60e51b815260040161119a90615763565b5050601d805460ff19166001179055565b600081601954611171919061556b565b600080546001600160a01b0316339081149190613afb90612c80565b90508180613b065750805b613b225760405162461bcd60e51b815260040161119a90615763565b428311613ba25760405162461bcd60e51b815260206004820152604260248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c655075626c696344726f7054696d606482015261652160f01b608482015260a40161119a565b5050601c55565b601281815481106119e857600080fd5b6000546001600160a01b03163314613be35760405162461bcd60e51b815260040161119a906157ac565b6001600160a01b038116613c485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161119a565b6129d58161442c565b600080546001600160a01b0316339081149190613c6d90612c80565b90508180613c785750805b613c945760405162461bcd60e51b815260040161119a90615763565b428311613d175760405162461bcd60e51b815260206004820152604560248201527f44726f702064617465206d75737420626520696e2066757475726521204f746860448201527f6572776973652063616c6c2064697361626c65416c6c6f776c69737444726f7060648201526454696d652160d81b608482015260a40161119a565b5050601e55565b600c546001600160a01b03163314613d485760405162461bcd60e51b815260040161119a90615711565b6000601555565b600080546001600160a01b0316339081149190613d6b90612c80565b90508180613d765750805b613d925760405162461bcd60e51b815260040161119a90615763565b6127896129d8565b60006001821015613dff5760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b606482015260840161119a565b60225482613e0c856146fb565b613e169190615393565b11159392505050565b6115fd83838360405180602001604052806000815250614799565b6000816001111580156111715750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60165460156000828254613ec09190615393565b9091555050565b6000613ed2826142fe565b80519091506000906001600160a01b0316336001600160a01b03161480613f09575033613efe84611386565b6001600160a01b0316145b80613f1b57508151613f1b9033610fbe565b905080613f855760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161119a565b846001600160a01b031682600001516001600160a01b031614613ff95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161119a565b6001600160a01b03841661405d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161119a565b61406d6000848460000151613e50565b6001600160a01b038516600090815260076020526040812080546001929061409f9084906001600160801b03166158d7565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260076020526040812080546001945090926140eb918591166158ff565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055614172846001615393565b6000818152600660205260409020549091506001600160a01b03166142015761419a81613e3a565b156142015760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461272c565b601554806142525750565b60005b6014548110156142df576142cd600f828154811061427557614275615892565b9060005260206000200160009054906101000a90046001600160a01b03166064601284815481106142a8576142a8615892565b9060005260206000200154856142be919061556b565b6142c89190615937565b614a66565b806142d781615748565b915050614255565b50506000601555565b6000826142f58584614afc565b14949350505050565b60408051808201909152600080825260208201528180600111158015614325575060025481105b156143cc576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215614376579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156143c7579392505050565b614376565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161119a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000614486612102565b905060005b6013548110156112f0576144de600e82815481106144ab576144ab615892565b9060005260206000200160009054906101000a90046001600160a01b03166064601184815481106142a8576142a8615892565b806144e881615748565b91505061448b565b60006001600160a01b0384163b156145f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061453490339089908890889060040161594b565b602060405180830381600087803b15801561454e57600080fd5b505af192505050801561457e575060408051601f3d908101601f1916820190925261457b91810190615988565b60015b6145d8573d8080156145ac576040519150601f19603f3d011682016040523d82523d6000602084013e6145b1565b606091505b5080516145d05760405162461bcd60e51b815260040161119a9061583f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506145f6565b5060015b949350505050565b6060816146225750506040805180820190915260018152600360fc1b602082015290565b8160005b811561464c578061463681615748565b91506146459050600a83615937565b9150614626565b6000816001600160401b0381111561466657614666615023565b6040519080825280601f01601f191660200182016040528015614690576020820181803683370190505b5090505b84156145f6576146a56001836157e1565b91506146b2600a866159a5565b6146bd906030615393565b60f81b8183815181106146d2576146d2615892565b60200101906001600160f81b031916908160001a9053506146f4600a86615937565b9450614694565b60006001600160a01b03821661476d5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161119a565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166147fc5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161119a565b61480581613e3a565b156148525760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161119a565b826148b4576003548411156148b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161119a565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906149109088906158ff565b6001600160801b0316815260200185614929578661492c565b60005b836020015161493b91906158ff565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b86811015614a5a5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4614a1e60008984886144f0565b614a3a5760405162461bcd60e51b815260040161119a9061583f565b81614a4481615748565b9250508080614a5290615748565b9150506149d1565b50600255505050505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114614ab3576040519150601f19603f3d011682016040523d82523d6000602084013e614ab8565b606091505b50509050806115fd5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161119a565b600081815b8451811015614b68576000858281518110614b1e57614b1e615892565b60200260200101519050808311614b445760008381526020829052604090209250614b55565b600081815260208490526040902092505b5080614b6081615748565b915050614b01565b509392505050565b828054614b7c90615436565b90600052602060002090601f016020900481019282614b9e5760008555614be4565b82601f10614bb75782800160ff19823516178555614be4565b82800160010185558215614be4579182015b82811115614be4578235825591602001919060010190614bc9565b5061227b929150614c64565b828054614bfc90615436565b90600052602060002090601f016020900481019282614c1e5760008555614be4565b82601f10614c3757805160ff1916838001178555614be4565b82800160010185558215614be4579182015b82811115614be4578251825591602001919060010190614c49565b5b8082111561227b5760008155600101614c65565b600060208284031215614c8b57600080fd5b5035919050565b6001600160e01b0319811681146129d557600080fd5b600060208284031215614cba57600080fd5b81356134c681614c92565b80356001600160a01b0381168114614cdc57600080fd5b919050565b600060208284031215614cf357600080fd5b6134c682614cc5565b60008060408385031215614d0f57600080fd5b614d1883614cc5565b946020939093013593505050565b60005b83811015614d41578181015183820152602001614d29565b83811115611e7f5750506000910152565b60008151808452614d6a816020860160208601614d26565b601f01601f19169290920160200192915050565b6020815260006134c66020830184614d52565b60008083601f840112614da357600080fd5b5081356001600160401b03811115614dba57600080fd5b6020830191508360208260051b8501011115614dd557600080fd5b9250929050565b600080600080600060808688031215614df457600080fd5b614dfd86614cc5565b94506020860135935060408601356001600160401b03811115614e1f57600080fd5b614e2b88828901614d91565b9094509250614e3e905060608701614cc5565b90509295509295909350565b600080600060608486031215614e5f57600080fd5b614e6884614cc5565b9250614e7660208501614cc5565b9150604084013590509250925092565b600080600060408486031215614e9b57600080fd5b614ea484614cc5565b925060208401356001600160401b03811115614ebf57600080fd5b614ecb86828701614d91565b9497909650939450505050565b60008060008060608587031215614eee57600080fd5b614ef785614cc5565b93506020850135925060408501356001600160401b03811115614f1957600080fd5b614f2587828801614d91565b95989497509550505050565b60008060208385031215614f4457600080fd5b82356001600160401b0380821115614f5b57600080fd5b818501915085601f830112614f6f57600080fd5b813581811115614f7e57600080fd5b866020828501011115614f9057600080fd5b60209290920196919550909350505050565b600080600060608486031215614fb757600080fd5b614fc084614cc5565b925060208401359150614fd560408501614cc5565b90509250925092565b80151581146129d557600080fd5b60008060408385031215614fff57600080fd5b61500883614cc5565b9150602083013561501881614fde565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561505357615053615023565b604051601f8501601f19908116603f0116810190828211818310171561507b5761507b615023565b8160405280935085815286868601111561509457600080fd5b858560208301376000602087830101525050509392505050565b600080600080608085870312156150c457600080fd5b6150cd85614cc5565b93506150db60208601614cc5565b92506040850135915060608501356001600160401b038111156150fd57600080fd5b8501601f8101871361510e57600080fd5b61511d87823560208401615039565b91505092959194509250565b60006020828403121561513b57600080fd5b81356001600160401b0381111561515157600080fd5b8201601f8101841361516257600080fd5b6145f684823560208401615039565b60008060006060848603121561518657600080fd5b61518f84614cc5565b9250602084013561519f81614fde565b929592945050506040919091013590565b600080604083850312156151c357600080fd5b6151cc83614cc5565b91506151da60208401614cc5565b90509250929050565b6020808252602b908201527f4f6e6c79206d696e74696e672077697468204552432d323020746f6b656e732060408201526a34b99032b730b13632b21760a91b606082015260800190565b6020808252601a908201527f4d757374206d696e74206174206c65617374203120746f6b656e000000000000604082015260600190565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b6020808252818101527f5075626c69632064726f702074696d6520686173206e6f742070617373656421604082015260600190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156153a6576153a661537d565b500190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203260408201526235353560e81b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c9082168061544a57607f821691505b6020821081141561546b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601b908201527f416c6c6f776c697374206d696e74696e6720697320636c6f7365640000000000604082015260600190565b6020808252601c908201527f41646472657373206973206e6f7420696e20416c6c6f776c6973742100000000604082015260600190565b60208082526023908201527f416c6c6f776c6973742064726f702074696d6520686173206e6f74207061737360408201526265642160e81b606082015260800190565b60208082526029908201527f4552432d323020546f6b656e206973206e6f7420617070726f76656420666f72604082015268206d696e74696e672160b81b606082015260800190565b60008160001904831182151516156155855761558561537d565b500290565b60006020828403121561559c57600080fd5b5051919050565b60208082526037908201527f427579657220646f6573206e6f74206f776e20656e6f756768206f6620746f6b60408201527f656e20746f20636f6d706c657465207075726368617365000000000000000000606082015260800190565b60208082526041908201527f427579657220646964206e6f7420617070726f766520656e6f756768206f662060408201527f4552432d323020746f6b656e20746f20636f6d706c65746520707572636861736060820152606560f81b608082015260a00190565b60208082526024908201527f46656520666f72204552432d3230207061796d656e74206e6f742070726f76696040820152636465642160e01b606082015260800190565b6000602082840312156156bd57600080fd5b81516134c681614fde565b60208082526029908201527f4552432d323020746f6b656e2077617320756e61626c6520746f206265207472604082015268185b9cd9995c9c995960ba1b606082015260800190565b6020808252601c908201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d505000000000604082015260600190565b600060001982141561575c5761575c61537d565b5060010190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000828210156157f3576157f361537d565b500390565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600083516158ba818460208801614d26565b8351908301906158ce818360208801614d26565b01949350505050565b60006001600160801b03838116908316818110156158f7576158f761537d565b039392505050565b60006001600160801b038083168185168083038211156158ce576158ce61537d565b634e487b7160e01b600052601260045260246000fd5b60008261594657615946615921565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061597e90830184614d52565b9695505050505050565b60006020828403121561599a57600080fd5b81516134c681614c92565b6000826159b4576159b4615921565b50069056fea2646970667358221220a85bfba6080cfed704ac164c5aca5d346e7fc153e18d0ac54b7c580466e1f00f64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f6befcfde07bbffe58a9a579804bd72d1e192723
-----Decoded View---------------
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f6befcfde07bbffe58a9a579804bd72d1e192723
Deployed Bytecode Sourcemap
76001:115:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55616:59;;;;;;;;;;-1:-1:-1;55616:59:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;363:32:1;;;345:51;;333:2;318:18;55616:59:0;;;;;;;;36158:90;;;;;;;;;;;;;:::i;:::-;;;553:25:1;;;541:2;526:18;36158:90:0;407:177:1;37910:370:0;;;;;;;;;;-1:-1:-1;37910:370:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;37910:370:0;975:187:1;35114:59:0;;;;;;;;;;-1:-1:-1;35114:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;66220:863;;;;;;:::i;:::-;;:::i;:::-;;39975:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42306:204::-;;;;;;;;;;-1:-1:-1;42306:204:0;;;;;:::i;:::-;;:::i;41682:566::-;;;;;;;;;;-1:-1:-1;41682:566:0;;;;;:::i;:::-;;:::i;53395:180::-;;;;;;;;;;;;;:::i;71789:1685::-;;;;;;:::i;:::-;;:::i;53689:36::-;;;;;;;;;;;;;;;;43347:142;;;;;;;;;;-1:-1:-1;43347:142:0;;;;;:::i;:::-;;:::i;55757:37::-;;;;;;;;;;-1:-1:-1;55757:37:0;;;;;:::i;:::-;;:::i;33843:27::-;;;;;;;;;;;;;;;;55944:46;;;;;;;;;;;;;;;;58714:179;;;;;;;;;;;;;:::i;31761:25::-;;;;;;;;;;;;;;;;37102:744;;;;;;;;;;-1:-1:-1;37102:744:0;;;;;:::i;:::-;;:::i;32420:287::-;;;;;;;;;;-1:-1:-1;32420:287:0;;;;;:::i;:::-;;:::i;64289:33::-;;;;;;;;;;-1:-1:-1;64289:33:0;;;;;;;;;;;4780:4:1;4768:17;;;4750:36;;4738:2;4723:18;64289:33:0;4608:184:1;70466:979:0;;;;;;:::i;:::-;;:::i;59777:170::-;;;;;;;;;;-1:-1:-1;59777:170:0;;;;;:::i;:::-;;:::i;55849:38::-;;;;;;;;;;;;;;;;69058:84;;;;;;;;;;;;;:::i;64840:280::-;;;;;;;;;;-1:-1:-1;64840:280:0;;;;;:::i;:::-;;:::i;43552:157::-;;;;;;;;;;-1:-1:-1;43552:157:0;;;;;:::i;:::-;;:::i;27866:223::-;;;;;;;;;;-1:-1:-1;27866:223:0;;;;;:::i;:::-;;:::i;56327:126::-;;;;;;;;;;;;;:::i;52612:33::-;;;;;;;;;;;;;;;;33799:39;;;;;;;;;;;;;;;61379:161;;;;;;;;;;-1:-1:-1;61379:161:0;;;;;:::i;:::-;;:::i;56046:40::-;;;;;;;;;;-1:-1:-1;56046:40:0;;;;;;;;32000:197;;;;;;;;;;-1:-1:-1;32000:197:0;;;;;:::i;:::-;;:::i;64504:35::-;;;;;;;;;;;;;;;;36634:177;;;;;;;;;;-1:-1:-1;36634:177:0;;;;;:::i;:::-;;:::i;64461:30::-;;;;;;;;;;-1:-1:-1;64461:30:0;;;;;;;;;;;75001:179;;;;;;;;;;-1:-1:-1;75001:179:0;;;;;:::i;:::-;;:::i;53640:44::-;;;;;;;;;;-1:-1:-1;53640:44:0;;;;;;;;75641:106;;;;;;;;;;-1:-1:-1;75641:106:0;;;;;:::i;:::-;;:::i;53158:98::-;;;;;;;;;;;;;:::i;67410:1549::-;;;;;;:::i;:::-;;:::i;39798:118::-;;;;;;;;;;-1:-1:-1;39798:118:0;;;;;:::i;:::-;;:::i;68967:83::-;;;;;;;;;;;;;:::i;32828:103::-;;;;;;;;;;;;;:::i;55995:46::-;;;;;;;;;;;;;;;;38336:211;;;;;;;;;;-1:-1:-1;38336:211:0;;;;;:::i;:::-;;:::i;26380:103::-;;;;;;;;;;;;;:::i;65339:662::-;;;;;;:::i;:::-;;:::i;32721:99::-;;;;;;;;;;;;;:::i;55680:72::-;;;;;;;;;;-1:-1:-1;55680:72:0;;;;-1:-1:-1;;;;;55680:72:0;;;41469:159;;;;;;;;;;-1:-1:-1;41469:159:0;;;;;:::i;:::-;;:::i;56459:119::-;;;;;;;;;;;;;:::i;55518:93::-;;;;;;;;;;-1:-1:-1;55518:93:0;;;;;:::i;:::-;;:::i;62096:97::-;;;;;;;;;;;;;:::i;63735:30::-;;;;;;;;;;;;;;;;25731:87;;;;;;;;;;-1:-1:-1;25777:7:0;25804:6;-1:-1:-1;;;;;25804:6:0;25731:87;;64424:30;;;;;;;;;;-1:-1:-1;64424:30:0;;;;;;;;74625:200;;;;;;;;;;-1:-1:-1;74625:200:0;;;;;:::i;:::-;;:::i;63772:90::-;;;;;;;;;;-1:-1:-1;63772:90:0;;;;;:::i;:::-;;:::i;52566:41::-;;;;;;;;;;-1:-1:-1;52566:41:0;;;;;;;;;;;75753:128;;;;;;;;;;-1:-1:-1;75753:128:0;;;;;:::i;:::-;;:::i;:::-;;;;7171:13:1;;-1:-1:-1;;;;;7167:39:1;7149:58;;7267:4;7255:17;;;7249:24;-1:-1:-1;;;;;7245:49:1;7223:20;;;7216:79;;;;7122:18;75753:128:0;6939:362:1;40130:98:0;;;;;;;;;;;;;:::i;28605:188::-;;;;;;;;;;-1:-1:-1;28605:188:0;;;;;:::i;:::-;;:::i;58148:448::-;;;;;;;;;;-1:-1:-1;58148:448:0;;;;;:::i;:::-;;:::i;42574:465::-;;;;;;;;;;-1:-1:-1;42574:465:0;;;;;:::i;:::-;;:::i;62539:346::-;;;;;;;;;;-1:-1:-1;62539:346:0;;;;;:::i;:::-;;:::i;73901:128::-;;;;;;;;;;;;;:::i;43772:311::-;;;;;;;;;;-1:-1:-1;43772:311:0;;;;;:::i;:::-;;:::i;62280:99::-;;;;;;;;;;;;;:::i;54254:104::-;;;;;;;;;;;;;:::i;63420:238::-;;;;;;;;;;-1:-1:-1;63420:238:0;;;;;:::i;:::-;;:::i;53059:93::-;;;;;;;;;;;;;:::i;59488:111::-;;;;;;;;;;-1:-1:-1;59488:111:0;;;;;:::i;:::-;;:::i;51832:72::-;;;;;;;;;;-1:-1:-1;51832:72:0;;;;-1:-1:-1;;;;;51832:72:0;;;40291:288;;;;;;;;;;-1:-1:-1;40291:288:0;;;;;:::i;:::-;;:::i;36254:96::-;;;;;;;;;;;;;:::i;61847:163::-;;;;;;;;;;-1:-1:-1;61847:163:0;;;;;:::i;:::-;;:::i;64329:86::-;;;;;;;;;;;;;:::i;75198:220::-;;;;;;;;;;-1:-1:-1;75198:220:0;;;;;:::i;:::-;;:::i;60105:301::-;;;;;;;;;;-1:-1:-1;60105:301:0;;;;;:::i;:::-;;:::i;75543:92::-;;;;;;;;;;;;;:::i;48380:43::-;;;;;;;;;;;;;;;;60772:304;;;;;;;;;;-1:-1:-1;60772:304:0;;;;;:::i;:::-;;:::i;54364:191::-;;;;;;;;;;;;;:::i;56586:116::-;;;;;;;;;;;;;:::i;69423:768::-;;;;;;:::i;:::-;;:::i;28232:234::-;;;;;;;;;;-1:-1:-1;28232:234:0;;;;;:::i;:::-;;:::i;54149:99::-;;;;;;;;;;;;;:::i;31793:37::-;;;;;;;;;;-1:-1:-1;31793:37:0;;;;;;;;63868:98;;;;;;;;;;-1:-1:-1;63868:98:0;;;;;:::i;:::-;;:::i;43102:186::-;;;;;;;;;;-1:-1:-1;43102:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;43247:25:0;;;43224:4;43247:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43102:186;52823:230;;;;;;;;;;-1:-1:-1;52823:230:0;;;;;:::i;:::-;;:::i;55799:45::-;;;;;;;;;;-1:-1:-1;55799:45:0;;;;;:::i;:::-;;:::i;26636:201::-;;;;;;;;;;-1:-1:-1;26636:201:0;;;;;:::i;:::-;;:::i;53904:239::-;;;;;;;;;;-1:-1:-1;53904:239:0;;;;;:::i;:::-;;:::i;62997:97::-;;;;;;;;;;;;;:::i;73625:125::-;;;;;;;;;;;;;:::i;74190:242::-;;;;;;;;;;-1:-1:-1;74190:242:0;;;;;:::i;:::-;;:::i;55892:47::-;;;;;;;;;;;;;;;;55616:59;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55616:59:0;;-1:-1:-1;55616:59:0;:::o;36158:90::-;36205:7;36228:14;36522:12;;-1:-1:-1;;36522:30:0;;36433:132;36228:14;36221:21;;36158:90;:::o;37910:370::-;38037:4;-1:-1:-1;;;;;;38067:40:0;;-1:-1:-1;;;38067:40:0;;:99;;-1:-1:-1;;;;;;;38118:48:0;;-1:-1:-1;;;38118:48:0;38067:99;:160;;;-1:-1:-1;;;;;;;38177:50:0;;-1:-1:-1;;;38177:50:0;38067:160;:207;;;-1:-1:-1;;;;;;;;;;12225:40:0;;;38238:36;38053:221;37910:370;-1:-1:-1;;37910:370:0:o;66220:863::-;66308:20;;;;:29;66300:85;;;;-1:-1:-1;;;66300:85:0;;;;;;;:::i;:::-;;;;;;;;;66415:1;66404:7;:12;;66396:51;;;;-1:-1:-1;;;66396:51:0;;;;;;;:::i;:::-;66477:12;;66466:7;:23;;66458:82;;;;-1:-1:-1;;;66458:82:0;;;;;;;:::i;:::-;66559:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;66582:17:0;;;;:26;66559:49;66551:99;;;;-1:-1:-1;;;66551:99:0;;;;;;;:::i;:::-;66669:22;:20;:22::i;:::-;:30;;66695:4;66669:30;66661:75;;;;-1:-1:-1;;;66661:75:0;;;;;;;:::i;:::-;66755:27;66769:3;66774:7;66755:13;:27::i;:::-;66747:88;;;;-1:-1:-1;;;66747:88:0;;;;;;;:::i;:::-;66884:14;66873:7;66854:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;66846:92;;;;-1:-1:-1;;;66846:92:0;;;;;;;:::i;:::-;66970:17;66979:7;66970:8;:17::i;:::-;66957:9;:30;66949:83;;;;-1:-1:-1;;;66949:83:0;;;;;;;:::i;:::-;67045:30;67055:3;67060:7;67069:5;67045:9;:30::i;:::-;66220:863;;:::o;39975:94::-;40029:13;40058:5;40051:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39975:94;:::o;42306:204::-;42374:7;42398:16;42406:7;42398;:16::i;:::-;42390:74;;;;-1:-1:-1;;;42390:74:0;;13884:2:1;42390:74:0;;;13866:21:1;13923:2;13903:18;;;13896:30;13962:34;13942:18;;;13935:62;-1:-1:-1;;;14013:18:1;;;14006:43;14066:19;;42390:74:0;13682:409:1;42390:74:0;-1:-1:-1;42480:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42480:24:0;;42306:204::o;41682:566::-;41751:13;41767:24;41783:7;41767:15;:24::i;:::-;41751:40;;41812:5;-1:-1:-1;;;;;41806:11:0;:2;-1:-1:-1;;;;;41806:11:0;;;41798:58;;;;-1:-1:-1;;;41798:58:0;;14298:2:1;41798:58:0;;;14280:21:1;14337:2;14317:18;;;14310:30;14376:34;14356:18;;;14349:62;-1:-1:-1;;;14427:18:1;;;14420:32;14469:19;;41798:58:0;14096:398:1;41798:58:0;-1:-1:-1;;;;;41871:31:0;;;;;;:27;:31;;;;;;;;:40;41863:180;;;;-1:-1:-1;;;41863:180:0;;14701:2:1;41863:180:0;;;14683:21:1;14740:3;14720:18;;;14713:31;14780:34;14760:18;;;14753:62;14851:34;14831:18;;;14824:62;14923:34;14902:19;;;14895:63;14995:33;14974:19;;;14967:62;15046:19;;41863:180:0;14499:572:1;41863:180:0;24537:10;-1:-1:-1;;;;;42068:21:0;;;;:62;;-1:-1:-1;42093:37:0;42110:5;24537:10;43102:186;:::i;42093:37::-;42052:153;;;;-1:-1:-1;;;42052:153:0;;15278:2:1;42052:153:0;;;15260:21:1;15317:2;15297:18;;;15290:30;15356:34;15336:18;;;15329:62;15427:27;15407:18;;;15400:55;15472:19;;42052:153:0;15076:421:1;42052:153:0;42214:28;42223:2;42227:7;42236:5;42214:8;:28::i;:::-;41744:504;41682:566;;:::o;53395:180::-;53463:21;;53447:4;;53463:21;;;;;53460:63;;-1:-1:-1;53511:4:0;;53395:180::o;53460:63::-;-1:-1:-1;53555:14:0;;53536:15;:33;;;53395:180::o;71789:1685::-;71944:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;71973:11:0;;;;:19;;:11;:19;71944:48;71936:88;;;;-1:-1:-1;;;71936:88:0;;;;;;;:::i;:::-;72041:32;72055:3;72060:12;;72041:13;:32::i;:::-;72033:73;;;;-1:-1:-1;;;72033:73:0;;;;;;;:::i;:::-;72134:1;72123:7;:12;;72115:51;;;;-1:-1:-1;;;72115:51:0;;;;;;;:::i;:::-;72194:12;;72183:7;:23;;72175:82;;;;-1:-1:-1;;;72175:82:0;;;;;;;:::i;:::-;72274:27;72288:3;72293:7;72274:13;:27::i;:::-;72266:88;;;;-1:-1:-1;;;72266:88:0;;;;;;;:::i;:::-;72401:14;72390:7;72371:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;72363:92;;;;-1:-1:-1;;;72363:92:0;;;;;;;:::i;:::-;72472:25;:23;:25::i;:::-;:33;;72501:4;72472:33;72464:81;;;;-1:-1:-1;;;72464:81:0;;;;;;;:::i;:::-;72612:47;72639:19;72612:26;:47::i;:::-;72604:101;;;;-1:-1:-1;;;72604:101:0;;;;;;;:::i;:::-;72714:27;72788:7;72744:41;72765:19;72744:20;:41::i;:::-;:51;;;;:::i;:::-;72876:27;;-1:-1:-1;;;72876:27:0;;-1:-1:-1;;;;;363:32:1;;;72876:27:0;;;345:51:1;72714:81:0;;-1:-1:-1;72833:19:0;;72714:81;;72876:22;;;;;;318:18:1;;72876:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;72868:118;;;;-1:-1:-1;;;72868:118:0;;;;;;;:::i;:::-;73003:42;;-1:-1:-1;;;73003:42:0;;-1:-1:-1;;;;;18045:15:1;;;73003:42:0;;;18027:34:1;73039:4:0;18077:18:1;;;18070:43;73049:19:0;;73003:22;;;;;;17962:18:1;;73003:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;72995:143;;;;-1:-1:-1;;;72995:143:0;;;;;;;:::i;:::-;59271:17;;59258:9;:30;73147:63;;;;-1:-1:-1;;;73147:63:0;;;;;;;:::i;:::-;73251:66;;-1:-1:-1;;;73251:66:0;;-1:-1:-1;;;;;19261:15:1;;;73251:66:0;;;19243:34:1;73290:4:0;19293:18:1;;;19286:43;19345:18;;;19338:34;;;73227:21:0;;73251:25;;;;;;19178:18:1;;73251:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73227:90;;73334:16;73326:70;;;;-1:-1:-1;;;73326:70:0;;;;;;;:::i;:::-;73413:30;73423:3;73428:7;73437:5;73413:9;:30::i;:::-;73452:14;:12;:14::i;:::-;71927:1547;;;71789:1685;;;;;:::o;43347:142::-;43455:28;43465:4;43471:2;43475:7;43455:9;:28::i;55757:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55757:37:0;:::o;58714:179::-;51961:12;;-1:-1:-1;;;;;51961:12:0;51947:10;:26;51939:67;;;;-1:-1:-1;;;51939:67:0;;;;;;;:::i;:::-;58803:1:::1;58779:21;;:25;58771:85;;;::::0;-1:-1:-1;;;58771:85:0;;20602:2:1;58771:85:0::1;::::0;::::1;20584:21:1::0;20641:2;20621:18;;;20614:30;20680:34;20660:18;;;20653:62;-1:-1:-1;;;20731:18:1;;;20724:45;20786:19;;58771:85:0::1;20400:411:1::0;58771:85:0::1;58863:24;:22;:24::i;:::-;58714:179::o:0;37102:744::-;37211:7;37246:16;37256:5;37246:9;:16::i;:::-;37238:5;:24;37230:71;;;;-1:-1:-1;;;37230:71:0;;21018:2:1;37230:71:0;;;21000:21:1;21057:2;21037:18;;;21030:30;21096:34;21076:18;;;21069:62;-1:-1:-1;;;21147:18:1;;;21140:32;21189:19;;37230:71:0;20816:398:1;37230:71:0;37308:22;37333:13;:11;:13::i;:::-;37308:38;;37353:19;37383:25;37433:9;37428:350;37452:14;37448:1;:18;37428:350;;;37482:31;37516:14;;;:11;:14;;;;;;;;;37482:48;;;;;;;;;-1:-1:-1;;;;;37482:48:0;;;;;-1:-1:-1;;;37482:48:0;;;-1:-1:-1;;;;;37482:48:0;;;;;;;;37543:28;37539:89;;37604:14;;;-1:-1:-1;37539:89:0;37661:5;-1:-1:-1;;;;;37640:26:0;:17;-1:-1:-1;;;;;37640:26:0;;37636:135;;;37698:5;37683:11;:20;37679:59;;;-1:-1:-1;37725:1:0;-1:-1:-1;37718:8:0;;-1:-1:-1;;;37718:8:0;37679:59;37748:13;;;;:::i;:::-;;;;37636:135;-1:-1:-1;37468:3:0;;;;:::i;:::-;;;;37428:350;;;-1:-1:-1;37784:56:0;;-1:-1:-1;;;37784:56:0;;21561:2:1;37784:56:0;;;21543:21:1;21600:2;21580:18;;;21573:30;21639:34;21619:18;;;21612:62;-1:-1:-1;;;21690:18:1;;;21683:44;21744:19;;37784:56:0;21359:410:1;32420:287:0;32532:10;;32509:4;;32524:51;;;;-1:-1:-1;;;32524:51:0;;21976:2:1;32524:51:0;;;21958:21:1;22015:2;21995:18;;;21988:30;22054:25;22034:18;;;22027:53;22097:18;;32524:51:0;21774:347:1;32524:51:0;32609:21;;-1:-1:-1;;22275:2:1;22271:15;;;22267:53;32609:21:0;;;22255:66:1;32584:12:0;;22337::1;;32609:21:0;;;;;;;;;;;;32599:32;;;;;;32584:47;;32649:50;32668:12;;32649:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32682:10:0;;;-1:-1:-1;32694:4:0;;-1:-1:-1;32649:18:0;:50::i;:::-;32642:57;32420:287;-1:-1:-1;;;;;32420:287:0:o;70466:979::-;70589:20;;;;:29;70581:85;;;;-1:-1:-1;;;70581:85:0;;;;;;;:::i;:::-;70685:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;70714:11:0;;;;:19;;:11;:19;70685:48;70677:88;;;;-1:-1:-1;;;70677:88:0;;;;;;;:::i;:::-;70784:32;70798:3;70803:12;;70784:13;:32::i;:::-;70776:73;;;;-1:-1:-1;;;70776:73:0;;;;;;;:::i;:::-;70879:1;70868:7;:12;;70860:51;;;;-1:-1:-1;;;70860:51:0;;;;;;;:::i;:::-;70941:12;;70930:7;:23;;70922:82;;;;-1:-1:-1;;;70922:82:0;;;;;;;:::i;:::-;71025:27;71039:3;71044:7;71025:13;:27::i;:::-;71017:88;;;;-1:-1:-1;;;71017:88:0;;;;;;;:::i;:::-;71154:14;71143:7;71124:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;71116:92;;;;-1:-1:-1;;;71116:92:0;;;;;;;:::i;:::-;71240:17;71249:7;71240:8;:17::i;:::-;71227:9;:30;71219:83;;;;-1:-1:-1;;;71219:83:0;;;;;;;:::i;:::-;71321:25;:23;:25::i;:::-;:33;;71350:4;71321:33;71313:81;;;;-1:-1:-1;;;71313:81:0;;;;;;;:::i;:::-;71407:30;71417:3;71422:7;71431:5;71407:9;:30::i;:::-;70466:979;;;;:::o;59777:170::-;-1:-1:-1;;;;;59882:42:0;59862:4;59882:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;59777:170::o;69058:84::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;69115:11:0::1;:19:::0;;-1:-1:-1;;69115:19:0::1;::::0;;69058:84::o;64840:280::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;64939:1:::1;64932:4;:8;64924:48;;;::::0;-1:-1:-1;;;64924:48:0;;22972:2:1;64924:48:0::1;::::0;::::1;22954:21:1::0;23011:2;22991:18;;;22984:30;23050:29;23030:18;;;23023:57;23097:18;;64924:48:0::1;22770:351:1::0;64924:48:0::1;65019:14;65011:4;64992:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;64984:89;;;;-1:-1:-1::0;;;64984:89:0::1;;;;;;;:::i;:::-;65085:26;65095:3;65100:4;65106;65085:9;:26::i;43552:157::-:0;43664:39;43681:4;43687:2;43691:7;43664:39;;;;;;;;;;;;:16;:39::i;27866:223::-;25777:7;25804:6;-1:-1:-1;;;;;25804:6:0;24537:10;25951:23;25943:68;;;;-1:-1:-1;;;25943:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27935:22:0;::::1;27927:50;;;::::0;-1:-1:-1;;;27927:50:0;;23689:2:1;27927:50:0::1;::::0;::::1;23671:21:1::0;23728:2;23708:18;;;23701:30;-1:-1:-1;;;23747:18:1;;;23740:45;23802:18;;27927:50:0::1;23487:339:1::0;27927:50:0::1;27993:16;28000:8;27993:6;:16::i;:::-;27992:17;27984:67;;;::::0;-1:-1:-1;;;27984:67:0;;24033:2:1;27984:67:0::1;::::0;::::1;24015:21:1::0;24072:2;24052:18;;;24045:30;24111:34;24091:18;;;24084:62;-1:-1:-1;;;24162:18:1;;;24155:35;24207:19;;27984:67:0::1;23831:401:1::0;27984:67:0::1;-1:-1:-1::0;;;;;28062:14:0::1;;::::0;;;28079:4:::1;28062:14;::::0;;;;;;;:21;;-1:-1:-1;;28062:21:0::1;::::0;;::::1;::::0;;27866:223::o;56327:126::-;56379:7;56426:21;;56402;:45;;;;:::i;61379:161::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;61476:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;61476:58:0::1;61530:4;61476:58;::::0;;61379:161::o;32000:197::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;32108:10:::1;;32090:14;:28;;32082:71;;;::::0;-1:-1:-1;;;32082:71:0;;24569:2:1;32082:71:0::1;::::0;::::1;24551:21:1::0;24608:2;24588:18;;;24581:30;24647:32;24627:18;;;24620:60;24697:18;;32082:71:0::1;24367:354:1::0;32082:71:0::1;-1:-1:-1::0;;32162:10:0::1;:27:::0;32000:197::o;36634:177::-;36701:7;36733:13;:11;:13::i;:::-;36725:5;:21;36717:69;;;;-1:-1:-1;;;36717:69:0;;24928:2:1;36717:69:0;;;24910:21:1;24967:2;24947:18;;;24940:30;25006:34;24986:18;;;24979:62;-1:-1:-1;;;25057:18:1;;;25050:33;25100:19;;36717:69:0;24726:399:1;36717:69:0;-1:-1:-1;36800:5:0;36634:177::o;75001:179::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;75100:1:::1;75085:11;:16;;75077:56;;;::::0;-1:-1:-1;;;75077:56:0;;25332:2:1;75077:56:0::1;::::0;::::1;25314:21:1::0;25371:2;25351:18;;;25344:30;25410:29;25390:18;;;25383:57;25457:18;;75077:56:0::1;25130:351:1::0;75077:56:0::1;-1:-1:-1::0;;75145:12:0::1;:26:::0;75001:179::o;75641:106::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;75718:23:::1;:13;75734:7:::0;;75718:23:::1;:::i;:::-;;28918:182:::0;;75641:106;;:::o;53158:98::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;53221:21:0::1;:29:::0;;-1:-1:-1;;53221:29:0::1;::::0;;53158:98::o;67410:1549::-;67541:1;67530:7;:12;;67522:51;;;;-1:-1:-1;;;67522:51:0;;;;;;;:::i;:::-;67601:12;;67590:7;:23;;67582:82;;;;-1:-1:-1;;;67582:82:0;;;;;;;:::i;:::-;67701:14;67681:16;:14;:16::i;:::-;:34;;67673:82;;;;-1:-1:-1;;;67673:82:0;;;;;;;:::i;:::-;67772:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;67795:17:0;;;;:26;67772:49;67764:99;;;;-1:-1:-1;;;67764:99:0;;;;;;;:::i;:::-;67880:22;:20;:22::i;:::-;:30;;67906:4;67880:30;67872:75;;;;-1:-1:-1;;;67872:75:0;;;;;;;:::i;:::-;67964:21;67978:3;67983:1;67964:13;:21::i;:::-;67956:82;;;;-1:-1:-1;;;67956:82:0;;;;;;;:::i;:::-;68101:47;68128:19;68101:26;:47::i;:::-;68093:101;;;;-1:-1:-1;;;68093:101:0;;;;;;;:::i;:::-;68203:27;68277:7;68233:41;68254:19;68233:20;:41::i;:::-;:51;;;;:::i;:::-;68361:27;;-1:-1:-1;;;68361:27:0;;-1:-1:-1;;;;;363:32:1;;;68361:27:0;;;345:51:1;68203:81:0;;-1:-1:-1;68322:19:0;;68203:81;;68361:22;;;;;;318:18:1;;68361:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;68353:118;;;;-1:-1:-1;;;68353:118:0;;;;;;;:::i;:::-;68488:42;;-1:-1:-1;;;68488:42:0;;-1:-1:-1;;;;;18045:15:1;;;68488:42:0;;;18027:34:1;68524:4:0;18077:18:1;;;18070:43;68534:19:0;;68488:22;;;;;;17962:18:1;;68488:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;68480:143;;;;-1:-1:-1;;;68480:143:0;;;;;;;:::i;:::-;59271:17;;59258:9;:30;68632:63;;;;-1:-1:-1;;;68632:63:0;;;;;;;:::i;:::-;68736:66;;-1:-1:-1;;;68736:66:0;;-1:-1:-1;;;;;19261:15:1;;;68736:66:0;;;19243:34:1;68775:4:0;19293:18:1;;;19286:43;19345:18;;;19338:34;;;68712:21:0;;68736:25;;;;;;19178:18:1;;68736:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68712:90;;68819:16;68811:70;;;;-1:-1:-1;;;68811:70:0;;;;;;;:::i;:::-;68898:30;68908:3;68913:7;68922:5;68898:9;:30::i;:::-;68937:14;:12;:14::i;:::-;67513:1446;;;67410:1549;;;:::o;39798:118::-;39862:7;39885:20;39897:7;39885:11;:20::i;:::-;:25;;39798:118;-1:-1:-1;;39798:118:0:o;68967:83::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;69024:11:0::1;:18:::0;;-1:-1:-1;;69024:18:0::1;69038:4;69024:18;::::0;;68967:83::o;32828:103::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32898:17:0::1;:25:::0;;-1:-1:-1;;32898:25:0::1;::::0;;32828:103::o;38336:211::-;38400:7;-1:-1:-1;;;;;38424:19:0;;38416:75;;;;-1:-1:-1;;;38416:75:0;;25688:2:1;38416:75:0;;;25670:21:1;25727:2;25707:18;;;25700:30;25766:34;25746:18;;;25739:62;-1:-1:-1;;;25817:18:1;;;25810:41;25868:19;;38416:75:0;25486:407:1;38416:75:0;-1:-1:-1;;;;;;38513:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38513:27:0;;38336:211::o;26380:103::-;25777:7;25804:6;-1:-1:-1;;;;;25804:6:0;24537:10;25951:23;25943:68;;;;-1:-1:-1;;;25943:68:0;;;;;;;:::i;:::-;26445:30:::1;26472:1;26445:18;:30::i;65339:662::-:0;65402:20;;;;:29;65394:85;;;;-1:-1:-1;;;65394:85:0;;;;;;;:::i;:::-;65518:14;65498:16;:14;:16::i;:::-;:34;;65490:82;;;;-1:-1:-1;;;65490:82:0;;;;;;;:::i;:::-;65591:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;65614:17:0;;;;:26;65591:49;65583:99;;;;-1:-1:-1;;;65583:99:0;;;;;;;:::i;:::-;65701:22;:20;:22::i;:::-;:30;;65727:4;65701:30;65693:75;;;;-1:-1:-1;;;65693:75:0;;;;;;;:::i;:::-;65787:21;65801:3;65806:1;65787:13;:21::i;:::-;65779:82;;;;-1:-1:-1;;;65779:82:0;;;;;;;:::i;:::-;65893:11;65902:1;65893:8;:11::i;:::-;65880:9;:24;65872:76;;;;-1:-1:-1;;;65872:76:0;;;;;;;:::i;:::-;65969:24;65979:3;65984:1;65987:5;65969:9;:24::i;:::-;65339:662;:::o;32721:99::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32788:17:0::1;:24:::0;;-1:-1:-1;;32788:24:0::1;32808:4;32788:24;::::0;;32721:99::o;41469:159::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;41569:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;41569:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41469:159::o;56459:119::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;56547:1:::1;56522:22;:20;:22::i;:::-;:26;56514:35;;;::::0;::::1;;56558:14;:12;:14::i;55518:93::-:0;;;;;;;;;;;;62096:97;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;62160:20:0::1;:27:::0;;-1:-1:-1;;62160:27:0::1;62183:4;62160:27;::::0;;62096:97::o;74625:200::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;74729:1:::1;74712:13;:18;;74704:70;;;::::0;-1:-1:-1;;;74704:70:0;;26508:2:1;74704:70:0::1;::::0;::::1;26490:21:1::0;26547:2;26527:18;;;26520:30;26586:34;26566:18;;;26559:62;-1:-1:-1;;;26637:18:1;;;26630:37;26684:19;;74704:70:0::1;26306:403:1::0;74704:70:0::1;-1:-1:-1::0;;74785:16:0::1;:32:::0;74625:200::o;63772:90::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;63839:5:0::1;:17:::0;63772:90::o;75753:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;75855:20:0;75867:7;75855:11;:20::i;40130:98::-;40186:13;40215:7;40208:14;;;;;:::i;28605:188::-;28675:4;-1:-1:-1;;;;;28699:22:0;;28691:60;;;;-1:-1:-1;;;28691:60:0;;26916:2:1;28691:60:0;;;26898:21:1;26955:2;26935:18;;;26928:30;26994:27;26974:18;;;26967:55;27039:18;;28691:60:0;26714:349:1;28691:60:0;-1:-1:-1;;;;;;28765:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;28605:188::o;58148:448::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;58280:1:::1;58260:17;:21;58252:30;;;::::0;::::1;;58349:38;::::0;-1:-1:-1;;;58349:38:0;;58381:4:::1;58349:38;::::0;::::1;345:51:1::0;58319:14:0;;58391:17;;-1:-1:-1;;;;;58349:23:0;::::1;::::0;::::1;::::0;318:18:1;;58349:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:59;;58341:119;;;::::0;-1:-1:-1;;;58341:119:0;;27270:2:1;58341:119:0::1;::::0;::::1;27252:21:1::0;27309:2;27289:18;;;27282:30;27348:34;27328:18;;;27321:62;-1:-1:-1;;;27399:18:1;;;27392:45;27454:19;;58341:119:0::1;27068:411:1::0;58341:119:0::1;58490:12;::::0;58467:55:::1;::::0;-1:-1:-1;;;58467:55:0;;-1:-1:-1;;;;;58490:12:0;;::::1;58467:55;::::0;::::1;27658:51:1::0;27725:18;;;27718:34;;;58467:22:0;;::::1;::::0;::::1;::::0;27631:18:1;;58467:55:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58566:24;:22;:24::i;42574:465::-:0;-1:-1:-1;;;;;42665:24:0;;24537:10;42665:24;;42657:63;;;;-1:-1:-1;;;42657:63:0;;27965:2:1;42657:63:0;;;27947:21:1;28004:2;27984:18;;;27977:30;28043:28;28023:18;;;28016:56;28089:18;;42657:63:0;27763:350:1;42657:63:0;-1:-1:-1;;;;;42735:37:0;;;;;;:27;:37;;;;;;;;:46;42727:184;;;;-1:-1:-1;;;42727:184:0;;28320:2:1;42727:184:0;;;28302:21:1;28359:3;28339:18;;;28332:31;28399:34;28379:18;;;28372:62;28470:34;28450:18;;;28443:62;28542:34;28521:19;;;28514:63;28614:31;28593:19;;;28586:60;28663:19;;42727:184:0;28118:570:1;42727:184:0;24537:10;42920:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42920:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42920:53:0;;;;;;;;;;42985:48;;1115:41:1;;;42920:42:0;;24537:10;42985:48;;1088:18:1;42985:48:0;;;;;;;42574:465;;:::o;62539:346::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62635:30:0;::::1;62627:103;;;::::0;-1:-1:-1;;;62627:103:0;;28895:2:1;62627:103:0::1;::::0;::::1;28877:21:1::0;28934:2;28914:18;;;28907:30;28973:34;28953:18;;;28946:62;29044:30;29024:18;;;29017:58;29092:19;;62627:103:0::1;28693:424:1::0;62627:103:0::1;62765:12;::::0;-1:-1:-1;;;;;62745:32:0;;::::1;62765:12:::0;::::1;62745:32;;62737:104;;;::::0;-1:-1:-1;;;62737:104:0;;29324:2:1;62737:104:0::1;::::0;::::1;29306:21:1::0;29363:2;29343:18;;;29336:30;29402:34;29382:18;;;29375:62;29473:29;29453:18;;;29446:57;29520:19;;62737:104:0::1;29122:423:1::0;62737:104:0::1;-1:-1:-1::0;;62848:12:0::1;:31:::0;;-1:-1:-1;;;;;;62848:31:0::1;-1:-1:-1::0;;;;;62848:31:0;;;::::1;::::0;;;::::1;::::0;;62539:346::o;73901:128::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;73965:26:::1;:24;:26::i;43772:311::-:0;43909:28;43919:4;43925:2;43929:7;43909:9;:28::i;:::-;43960:48;43983:4;43989:2;43993:7;44002:5;43960:22;:48::i;:::-;43944:133;;;;-1:-1:-1;;;43944:133:0;;;;;;;:::i;62280:99::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;62345:20:0::1;:28:::0;;-1:-1:-1;;62345:28:0::1;::::0;;62280:99::o;54254:104::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;54320:24:0::1;:32:::0;;-1:-1:-1;;54320:32:0::1;::::0;;54254:104::o;63420:238::-;51961:12;;-1:-1:-1;;;;;51961:12:0;51947:10;:26;51939:67;;;;-1:-1:-1;;;51939:67:0;;;;;;;:::i;:::-;63511:12:::1;::::0;-1:-1:-1;;;;;63496:27:0;;::::1;63511:12:::0;::::1;63496:27;;63488:91;;;::::0;-1:-1:-1;;;63488:91:0;;30172:2:1;63488:91:0::1;::::0;::::1;30154:21:1::0;30211:2;30191:18;;;30184:30;30250:34;30230:18;;;30223:62;-1:-1:-1;;;30301:18:1;;;30294:49;30360:19;;63488:91:0::1;29970:415:1::0;63488:91:0::1;63586:12;:26:::0;;-1:-1:-1;;;;;;63586:26:0::1;-1:-1:-1::0;;;;;63586:26:0;::::1;;::::0;;63619:16:::1;:19:::0;;63586:26;;63619:16;-1:-1:-1;;63619:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;63619:33:0::1;;;;;-1:-1:-1::0;;;;;63619:33:0::1;;;;;;63420:238:::0;:::o;53059:93::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;53118:21:0::1;:28:::0;;-1:-1:-1;;53118:28:0::1;;;::::0;;53059:93::o;59488:111::-;51961:12;;-1:-1:-1;;;;;51961:12:0;51947:10;:26;51939:67;;;;-1:-1:-1;;;51939:67:0;;;;;;;:::i;:::-;59560:17:::1;:33:::0;59488:111::o;40291:288::-;40389:13;40414:21;40438:10;:8;:10::i;:::-;40414:34;;40493:1;40475:7;40469:21;:25;:104;;;;;;;;;;;;;;;;;40530:7;40539:18;:7;:16;:18::i;:::-;40513:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40469:104;40455:118;40291:288;-1:-1:-1;;;40291:288:0:o;36254:96::-;36301:7;36326:14;36522:12;;-1:-1:-1;;36522:30:0;;36433:132;36326:14;:18;;36343:1;36326:18;:::i;61847:163::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;61945:42:0::1;61999:5;61945:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;61945:59:0::1;::::0;;61847:163::o;64329:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75198:220::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;75288:10:::1;::::0;::::1;::::0;::::1;;;:19;75280:59;;;::::0;-1:-1:-1;;;75280:59:0;;31199:2:1;75280:59:0::1;::::0;::::1;31181:21:1::0;31238:2;31218:18;;;31211:30;31277:29;31257:18;;;31250:57;31324:18;;75280:59:0::1;30997:351:1::0;75280:59:0::1;75350:32:::0;;::::1;::::0;:13:::1;::::0;:32;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;75393:10:0::1;:17:::0;;-1:-1:-1;;75393:17:0::1;;;::::0;;-1:-1:-1;;75198:220:0:o;60105:301::-;60184:7;60208:47;60235:19;60208:26;:47::i;:::-;60200:131;;;;-1:-1:-1;;;60200:131:0;;31555:2:1;60200:131:0;;;31537:21:1;31594:2;31574:18;;;31567:30;31633:34;31613:18;;;31606:62;31704:34;31684:18;;;31677:62;-1:-1:-1;;;31755:19:1;;;31748:38;31803:19;;60200:131:0;31353:475:1;60200:131:0;-1:-1:-1;;;;;;60345:42:0;;;;;:21;:42;;;;;:55;;;;60105:301::o;75543:92::-;75587:13;75616;75609:20;;;;;:::i;60772:304::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;60921:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;60921:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;60991:55:0::1;:79:::0;60772:304::o;54364:191::-;54435:24;;54419:4;;54435:24;;54432:66;;-1:-1:-1;54486:4:0;;54364:191::o;54432:66::-;-1:-1:-1;54532:17:0;;54513:15;:36;;;54364:191::o;56586:116::-;51961:12;;-1:-1:-1;;;;;51961:12:0;51947:10;:26;51939:67;;;;-1:-1:-1;;;51939:67:0;;;;;;;:::i;:::-;56671:1:::1;56646:22;:20;:22::i;:::-;:26;56638:35;;;::::0;::::1;;56682:14;:12;:14::i;69423:768::-:0;69521:20;;;;:29;69513:85;;;;-1:-1:-1;;;69513:85:0;;;;;;;:::i;:::-;69617:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;69646:11:0;;;;:19;;:11;:19;69617:48;69609:88;;;;-1:-1:-1;;;69609:88:0;;;;;;;:::i;:::-;69716:32;69730:3;69735:12;;69716:13;:32::i;:::-;69708:73;;;;-1:-1:-1;;;69708:73:0;;;;;;;:::i;:::-;69820:14;69800:16;:14;:16::i;:::-;:34;;69792:82;;;;-1:-1:-1;;;69792:82:0;;;;;;;:::i;:::-;69893:21;69907:3;69912:1;69893:13;:21::i;:::-;69885:82;;;;-1:-1:-1;;;69885:82:0;;;;;;;:::i;:::-;69999:11;70008:1;69999:8;:11::i;:::-;69986:9;:24;69978:76;;;;-1:-1:-1;;;69978:76:0;;;;;;;:::i;:::-;70073:25;:23;:25::i;:::-;:33;;70102:4;70073:33;70065:81;;;;-1:-1:-1;;;70065:81:0;;;;;;;:::i;:::-;70159:24;70169:3;70174:1;70177:5;70159:9;:24::i;28232:234::-;25777:7;25804:6;-1:-1:-1;;;;;25804:6:0;24537:10;25951:23;25943:68;;;;-1:-1:-1;;;25943:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28306:22:0;::::1;28298:50;;;::::0;-1:-1:-1;;;28298:50:0;;23689:2:1;28298:50:0::1;::::0;::::1;23671:21:1::0;23728:2;23708:18;;;23701:30;-1:-1:-1;;;23747:18:1;;;23740:45;23802:18;;28298:50:0::1;23487:339:1::0;28298:50:0::1;28363:16;28370:8;28363:6;:16::i;:::-;28355:72;;;::::0;-1:-1:-1;;;28355:72:0;;32035:2:1;28355:72:0::1;::::0;::::1;32017:21:1::0;32074:2;32054:18;;;32047:30;32113:34;32093:18;;;32086:62;-1:-1:-1;;;32164:18:1;;;32157:41;32215:19;;28355:72:0::1;31833:407:1::0;28355:72:0::1;-1:-1:-1::0;;;;;28438:14:0::1;28455:5;28438:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;28438:22:0::1;::::0;;28232:234::o;54149:99::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;-1:-1:-1;;54211:24:0::1;:31:::0;;-1:-1:-1;;54211:31:0::1;54238:4;54211:31;::::0;;54149:99::o;63868:98::-;63923:7;63954:6;63946:5;;:14;;;;:::i;52823:230::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;52925:15:::1;52910:12;:30;52902:109;;;::::0;-1:-1:-1;;;52902:109:0;;32447:2:1;52902:109:0::1;::::0;::::1;32429:21:1::0;32486:2;32466:18;;;32459:30;32525:34;32505:18;;;32498:62;32596:34;32576:18;;;32569:62;-1:-1:-1;;;32647:19:1;;;32640:33;32690:19;;52902:109:0::1;32245:470:1::0;52902:109:0::1;-1:-1:-1::0;;53018:14:0::1;:29:::0;52823:230::o;55799:45::-;;;;;;;;;;;;26636:201;25777:7;25804:6;-1:-1:-1;;;;;25804:6:0;24537:10;25951:23;25943:68;;;;-1:-1:-1;;;25943:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26725:22:0;::::1;26717:73;;;::::0;-1:-1:-1;;;26717:73:0;;32922:2:1;26717:73:0::1;::::0;::::1;32904:21:1::0;32961:2;32941:18;;;32934:30;33000:34;32980:18;;;32973:62;-1:-1:-1;;;33051:18:1;;;33044:36;33097:19;;26717:73:0::1;32720:402:1::0;26717:73:0::1;26801:28;26820:8;26801:18;:28::i;53904:239::-:0;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;54009:15:::1;53994:12;:30;53986:112;;;::::0;-1:-1:-1;;;53986:112:0;;33329:2:1;53986:112:0::1;::::0;::::1;33311:21:1::0;33368:2;33348:18;;;33341:30;33407:34;33387:18;;;33380:62;33478:34;33458:18;;;33451:62;-1:-1:-1;;;33529:19:1;;;33522:36;33575:19;;53986:112:0::1;33127:473:1::0;53986:112:0::1;-1:-1:-1::0;;54105:17:0::1;:32:::0;53904:239::o;62997:97::-;51961:12;;-1:-1:-1;;;;;51961:12:0;51947:10;:26;51939:67;;;;-1:-1:-1;;;51939:67:0;;;;;;;:::i;:::-;63081:7:::1;63057:21;:31:::0;62997:97::o;73625:125::-;28925:13;25804:6;;-1:-1:-1;;;;;25804:6:0;24537:10;28941:23;;;;28925:13;28986:20;;28605:188;:::i;28986:20::-;28971:35;;29021:8;:19;;;;29033:7;29021:19;29013:73;;;;-1:-1:-1;;;29013:73:0;;;;;;;:::i;:::-;73688:25:::1;:23;:25::i;74190:242::-:0;74268:4;74304:1;74293:7;:12;;74285:66;;;;-1:-1:-1;;;74285:66:0;;33807:2:1;74285:66:0;;;33789:21:1;33846:2;33826:18;;;33819:30;33885:34;33865:18;;;33858:62;-1:-1:-1;;;33936:18:1;;;33929:39;33985:19;;74285:66:0;33605:405:1;74285:66:0;74408:16;;74396:7;74370:23;74384:8;74370:13;:23::i;:::-;:33;;;;:::i;:::-;74369:55;;;74190:242;-1:-1:-1;;;74190:242:0:o;44459:129::-;44542:40;44552:2;44556:8;44566:11;44542:40;;;;;;;;;;;;:9;:40::i;44318:135::-;44375:4;44414:7;35981:1;44395:26;;:52;;;;-1:-1:-1;;44435:12:0;;-1:-1:-1;44425:22:0;44318:135::o;48202:172::-;48299:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48299:29:0;-1:-1:-1;;;;;48299:29:0;;;;;;;;;48340:28;;48299:24;;48340:28;;;;;;;48202:172;;;:::o;59005:88::-;59070:17;;59045:21;;:42;;;;;;;:::i;:::-;;;;-1:-1:-1;;59005:88:0:o;46571:1529::-;46668:35;46706:20;46718:7;46706:11;:20::i;:::-;46777:18;;46668:58;;-1:-1:-1;46735:22:0;;-1:-1:-1;;;;;46761:34:0;24537:10;-1:-1:-1;;;;;46761:34:0;;:81;;;-1:-1:-1;24537:10:0;46806:20;46818:7;46806:11;:20::i;:::-;-1:-1:-1;;;;;46806:36:0;;46761:81;:142;;;-1:-1:-1;46870:18:0;;46853:50;;24537:10;43102:186;:::i;46853:50::-;46735:169;;46929:17;46913:101;;;;-1:-1:-1;;;46913:101:0;;34217:2:1;46913:101:0;;;34199:21:1;34256:2;34236:18;;;34229:30;34295:34;34275:18;;;34268:62;-1:-1:-1;;;34346:18:1;;;34339:48;34404:19;;46913:101:0;34015:414:1;46913:101:0;47061:4;-1:-1:-1;;;;;47039:26:0;:13;:18;;;-1:-1:-1;;;;;47039:26:0;;47023:98;;;;-1:-1:-1;;;47023:98:0;;34636:2:1;47023:98:0;;;34618:21:1;34675:2;34655:18;;;34648:30;34714:34;34694:18;;;34687:62;-1:-1:-1;;;34765:18:1;;;34758:36;34811:19;;47023:98:0;34434:402:1;47023:98:0;-1:-1:-1;;;;;47136:16:0;;47128:66;;;;-1:-1:-1;;;47128:66:0;;35043:2:1;47128:66:0;;;35025:21:1;35082:2;35062:18;;;35055:30;35121:34;35101:18;;;35094:62;-1:-1:-1;;;35172:18:1;;;35165:35;35217:19;;47128:66:0;34841:401:1;47128:66:0;47303:49;47320:1;47324:7;47333:13;:18;;;47303:8;:49::i;:::-;-1:-1:-1;;;;;47361:18:0;;;;;;:12;:18;;;;;:31;;47391:1;;47361:18;:31;;47391:1;;-1:-1:-1;;;;;47361:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;47361:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47399:16:0;;-1:-1:-1;47399:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;47399:16:0;;:29;;-1:-1:-1;;47399:29:0;;:::i;:::-;;;-1:-1:-1;;;;;47399:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47458:43:0;;;;;;;;-1:-1:-1;;;;;47458:43:0;;;;;-1:-1:-1;;;;;47484:15:0;47458:43;;;;;;;;;-1:-1:-1;47435:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;47435:66:0;-1:-1:-1;;;;;;47435:66:0;;;;;;;;;;;47751:11;47447:7;-1:-1:-1;47751:11:0;:::i;:::-;47814:1;47773:24;;;:11;:24;;;;;:29;47729:33;;-1:-1:-1;;;;;;47773:29:0;47769:236;;47831:20;47839:11;47831:7;:20::i;:::-;47827:171;;;47891:97;;;;;;;;47918:18;;-1:-1:-1;;;;;47891:97:0;;;;;;47949:28;;;;-1:-1:-1;;;;;47891:97:0;;;;;;;;;-1:-1:-1;47864:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;47864:124:0;-1:-1:-1;;;;;;47864:124:0;;;;;;;;;;;;47827:171;48037:7;48033:2;-1:-1:-1;;;;;48018:27:0;48027:4;-1:-1:-1;;;;;48018:27:0;;;;;;;;;;;48052:42;70466:979;57368:371;57435:21;;57466:12;57463:28;;57482:7;57368:371::o;57463:28::-;57507:6;57503:193;57521:28;;57517:1;:32;57503:193;;;57568:120;57593:25;57619:1;57593:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57593:28:0;57674:3;57647:20;57668:1;57647:23;;;;;;;;:::i;:::-;;;;;;;;;57637:7;:33;;;;:::i;:::-;57636:41;;;;:::i;:::-;57568:10;:120::i;:::-;57551:3;;;;:::i;:::-;;;;57503:193;;;-1:-1:-1;;57726:7:0;57702:21;:31;57368:371::o;30126:202::-;30259:4;30314;30285:25;30298:5;30305:4;30285:12;:25::i;:::-;:33;;30126:202;-1:-1:-1;;;;30126:202:0:o;38799:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;38923:7:0;;35981:1;38964:23;;:46;;;;;38998:12;;38991:4;:19;38964:46;38960:706;;;39027:31;39061:17;;;:11;:17;;;;;;;;;39027:51;;;;;;;;;-1:-1:-1;;;;;39027:51:0;;;;;-1:-1:-1;;;39027:51:0;;;-1:-1:-1;;;;;39027:51:0;;;;;;;;39097:28;39093:85;;39153:9;38799:945;-1:-1:-1;;;38799:945:0:o;39093:85::-;-1:-1:-1;;;39474:6:0;39511:17;;;;:11;:17;;;;;;;;;39499:29;;;;;;;;;-1:-1:-1;;;;;39499:29:0;;;;;-1:-1:-1;;;39499:29:0;;;-1:-1:-1;;;;;39499:29:0;;;;;;;;39551:28;39547:93;;39611:9;38799:945;-1:-1:-1;;;38799:945:0:o;39547:93::-;39442:213;;38960:706;39681:57;;-1:-1:-1;;;39681:57:0;;36215:2:1;39681:57:0;;;36197:21:1;36254:2;36234:18;;;36227:30;36293:34;36273:18;;;36266:62;-1:-1:-1;;;36344:18:1;;;36337:45;36399:19;;39681:57:0;36013:411:1;26995:191:0;27069:16;27088:6;;-1:-1:-1;;;;;27105:17:0;;;-1:-1:-1;;;;;;27105:17:0;;;;;;27138:40;;27088:6;;;;;;;27138:40;;27069:16;27138:40;27058:128;26995:191;:::o;56708:279::-;56749:15;56767:22;:20;:22::i;:::-;56749:40;;56810:6;56806:176;56824:19;;56820:1;:23;56806:176;;;56864:108;56891:16;56908:1;56891:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;56891:19:0;56956:3;56938:11;56950:1;56938:14;;;;;;;;:::i;56864:108::-;56845:3;;;;:::i;:::-;;;;56806:176;;49991:690;50128:4;-1:-1:-1;;;;;50145:13:0;;2400:19;:23;50141:535;;50184:72;;-1:-1:-1;;;50184:72:0;;-1:-1:-1;;;;;50184:36:0;;;;;:72;;24537:10;;50235:4;;50241:7;;50250:5;;50184:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50184:72:0;;;;;;;;-1:-1:-1;;50184:72:0;;;;;;;;;;;;:::i;:::-;;;50171:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50415:13:0;;50411:215;;50448:61;;-1:-1:-1;;;50448:61:0;;;;;;;:::i;50411:215::-;50594:6;50588:13;50579:6;50575:2;50571:15;50564:38;50171:464;-1:-1:-1;;;;;;50306:55:0;-1:-1:-1;;;50306:55:0;;-1:-1:-1;50299:62:0;;50141:535;-1:-1:-1;50664:4:0;50141:535;49991:690;;;;;;:::o;19288:723::-;19344:13;19565:10;19561:53;;-1:-1:-1;;19592:10:0;;;;;;;;;;;;-1:-1:-1;;;19592:10:0;;;;;19288:723::o;19561:53::-;19639:5;19624:12;19680:78;19687:9;;19680:78;;19713:8;;;;:::i;:::-;;-1:-1:-1;19736:10:0;;-1:-1:-1;19744:2:0;19736:10;;:::i;:::-;;;19680:78;;;19768:19;19800:6;-1:-1:-1;;;;;19790:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19790:17:0;;19768:39;;19818:154;19825:10;;19818:154;;19852:11;19862:1;19852:11;;:::i;:::-;;-1:-1:-1;19921:10:0;19929:2;19921:5;:10;:::i;:::-;19908:24;;:2;:24;:::i;:::-;19895:39;;19878:6;19885;19878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19878:56:0;;;;;;;;-1:-1:-1;19949:11:0;19958:2;19949:11;;:::i;:::-;;;19818:154;;38553:240;38614:7;-1:-1:-1;;;;;38646:19:0;;38630:102;;;;-1:-1:-1;;;38630:102:0;;37496:2:1;38630:102:0;;;37478:21:1;37535:2;37515:18;;;37508:30;37574:34;37554:18;;;37547:62;-1:-1:-1;;;37625:18:1;;;37618:47;37682:19;;38630:102:0;37294:413:1;38630:102:0;-1:-1:-1;;;;;;38754:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38754:32:0;;-1:-1:-1;;;;;38754:32:0;;38553:240::o;44917:1434::-;45068:12;;-1:-1:-1;;;;;45095:16:0;;45087:62;;;;-1:-1:-1;;;45087:62:0;;37914:2:1;45087:62:0;;;37896:21:1;37953:2;37933:18;;;37926:30;37992:34;37972:18;;;37965:62;-1:-1:-1;;;38043:18:1;;;38036:31;38084:19;;45087:62:0;37712:397:1;45087:62:0;45286:21;45294:12;45286:7;:21::i;:::-;45285:22;45277:64;;;;-1:-1:-1;;;45277:64:0;;38316:2:1;45277:64:0;;;38298:21:1;38355:2;38335:18;;;38328:30;38394:31;38374:18;;;38367:59;38443:18;;45277:64:0;38114:353:1;45277:64:0;45427:20;45423:116;;45480:12;;45468:8;:24;;45460:71;;;;-1:-1:-1;;;45460:71:0;;38674:2:1;45460:71:0;;;38656:21:1;38713:2;38693:18;;;38686:30;38752:34;38732:18;;;38725:62;-1:-1:-1;;;38803:18:1;;;38796:32;38845:19;;45460:71:0;38472:398:1;45460:71:0;-1:-1:-1;;;;;45650:16:0;;45617:30;45650:16;;;:12;:16;;;;;;;;;45617:49;;;;;;;;;-1:-1:-1;;;;;45617:49:0;;;;;-1:-1:-1;;;45617:49:0;;;;;;;;;;;45692:139;;;;;;;;45712:19;;45617:49;;45692:139;;;45712:39;;45742:8;;45712:39;:::i;:::-;-1:-1:-1;;;;;45692:139:0;;;;;45788:11;:35;;45814:8;45788:35;;;45802:1;45788:35;45760:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;45692:139:0;;;;;;-1:-1:-1;;;;;45673:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;45673:158:0;;;;;;;;;;;;45866:43;;;;;;;;;;-1:-1:-1;;;;;45892:15:0;45866:43;;;;;;;;45838:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;45838:71:0;-1:-1:-1;;;;;;45838:71:0;;;;;;;;;;;;;;;;;;45850:12;;45962:281;45986:8;45982:1;:12;45962:281;;;46015:38;;46040:12;;-1:-1:-1;;;;;46015:38:0;;;46032:1;;46015:38;;46032:1;;46015:38;46080:59;46111:1;46115:2;46119:12;46133:5;46080:22;:59::i;:::-;46062:150;;;;-1:-1:-1;;;46062:150:0;;;;;;;:::i;:::-;46221:14;;;;:::i;:::-;;;;45996:3;;;;;:::i;:::-;;;;45962:281;;;-1:-1:-1;46251:12:0;:27;-1:-1:-1;;;;;;44917:1434:0:o;56995:175::-;57068:12;57086:8;-1:-1:-1;;;;;57086:13:0;57107:7;57086:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57067:52;;;57136:7;57128:36;;;;-1:-1:-1;;;57128:36:0;;39287:2:1;57128:36:0;;;39269:21:1;39326:2;39306:18;;;39299:30;-1:-1:-1;;;39345:18:1;;;39338:46;39401:18;;57128:36:0;39085:340:1;30700:701:0;30783:7;30828:4;30783:7;30845:515;30869:5;:12;30865:1;:16;30845:515;;;30905:20;30928:5;30934:1;30928:8;;;;;;;;:::i;:::-;;;;;;;30905:31;;30973:12;30957;:28;30953:394;;31479:13;31533:15;;;31571:4;31564:15;;;31620:4;31604:21;;31089:57;;30953:394;;;31479:13;31533:15;;;31571:4;31564:15;;;31620:4;31604:21;;31272:57;;30953:394;-1:-1:-1;30883:3:0;;;;:::i;:::-;;;;30845:515;;;-1:-1:-1;31379:12:0;30700:701;-1:-1:-1;;;30700:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;589:131::-;-1:-1:-1;;;;;;663:32:1;;653:43;;643:71;;710:1;707;700:12;725:245;783:6;836:2;824:9;815:7;811:23;807:32;804:52;;;852:1;849;842:12;804:52;891:9;878:23;910:30;934:5;910:30;:::i;1167:173::-;1235:20;;-1:-1:-1;;;;;1284:31:1;;1274:42;;1264:70;;1330:1;1327;1320:12;1264:70;1167:173;;;:::o;1345:186::-;1404:6;1457:2;1445:9;1436:7;1432:23;1428:32;1425:52;;;1473:1;1470;1463:12;1425:52;1496:29;1515:9;1496:29;:::i;1536:254::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1704:29;1723:9;1704:29;:::i;:::-;1694:39;1780:2;1765:18;;;;1752:32;;-1:-1:-1;;;1536:254:1:o;1795:258::-;1867:1;1877:113;1891:6;1888:1;1885:13;1877:113;;;1967:11;;;1961:18;1948:11;;;1941:39;1913:2;1906:10;1877:113;;;2008:6;2005:1;2002:13;1999:48;;;-1:-1:-1;;2043:1:1;2025:16;;2018:27;1795:258::o;2058:::-;2100:3;2138:5;2132:12;2165:6;2160:3;2153:19;2181:63;2237:6;2230:4;2225:3;2221:14;2214:4;2207:5;2203:16;2181:63;:::i;:::-;2298:2;2277:15;-1:-1:-1;;2273:29:1;2264:39;;;;2305:4;2260:50;;2058:258;-1:-1:-1;;2058:258:1:o;2321:220::-;2470:2;2459:9;2452:21;2433:4;2490:45;2531:2;2520:9;2516:18;2508:6;2490:45;:::i;2546:367::-;2609:8;2619:6;2673:3;2666:4;2658:6;2654:17;2650:27;2640:55;;2691:1;2688;2681:12;2640:55;-1:-1:-1;2714:20:1;;-1:-1:-1;;;;;2746:30:1;;2743:50;;;2789:1;2786;2779:12;2743:50;2826:4;2818:6;2814:17;2802:29;;2886:3;2879:4;2869:6;2866:1;2862:14;2854:6;2850:27;2846:38;2843:47;2840:67;;;2903:1;2900;2893:12;2840:67;2546:367;;;;;:::o;2918:654::-;3031:6;3039;3047;3055;3063;3116:3;3104:9;3095:7;3091:23;3087:33;3084:53;;;3133:1;3130;3123:12;3084:53;3156:29;3175:9;3156:29;:::i;:::-;3146:39;;3232:2;3221:9;3217:18;3204:32;3194:42;;3287:2;3276:9;3272:18;3259:32;-1:-1:-1;;;;;3306:6:1;3303:30;3300:50;;;3346:1;3343;3336:12;3300:50;3385:70;3447:7;3438:6;3427:9;3423:22;3385:70;:::i;:::-;3474:8;;-1:-1:-1;3359:96:1;-1:-1:-1;3528:38:1;;-1:-1:-1;3562:2:1;3547:18;;3528:38;:::i;:::-;3518:48;;2918:654;;;;;;;;:::o;3577:328::-;3654:6;3662;3670;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3762:29;3781:9;3762:29;:::i;:::-;3752:39;;3810:38;3844:2;3833:9;3829:18;3810:38;:::i;:::-;3800:48;;3895:2;3884:9;3880:18;3867:32;3857:42;;3577:328;;;;;:::o;4092:511::-;4187:6;4195;4203;4256:2;4244:9;4235:7;4231:23;4227:32;4224:52;;;4272:1;4269;4262:12;4224:52;4295:29;4314:9;4295:29;:::i;:::-;4285:39;;4375:2;4364:9;4360:18;4347:32;-1:-1:-1;;;;;4394:6:1;4391:30;4388:50;;;4434:1;4431;4424:12;4388:50;4473:70;4535:7;4526:6;4515:9;4511:22;4473:70;:::i;:::-;4092:511;;4562:8;;-1:-1:-1;4447:96:1;;-1:-1:-1;;;;4092:511:1:o;4797:579::-;4901:6;4909;4917;4925;4978:2;4966:9;4957:7;4953:23;4949:32;4946:52;;;4994:1;4991;4984:12;4946:52;5017:29;5036:9;5017:29;:::i;:::-;5007:39;;5093:2;5082:9;5078:18;5065:32;5055:42;;5148:2;5137:9;5133:18;5120:32;-1:-1:-1;;;;;5167:6:1;5164:30;5161:50;;;5207:1;5204;5197:12;5161:50;5246:70;5308:7;5299:6;5288:9;5284:22;5246:70;:::i;:::-;4797:579;;;;-1:-1:-1;5335:8:1;-1:-1:-1;;;;4797:579:1:o;5566:592::-;5637:6;5645;5698:2;5686:9;5677:7;5673:23;5669:32;5666:52;;;5714:1;5711;5704:12;5666:52;5754:9;5741:23;-1:-1:-1;;;;;5824:2:1;5816:6;5813:14;5810:34;;;5840:1;5837;5830:12;5810:34;5878:6;5867:9;5863:22;5853:32;;5923:7;5916:4;5912:2;5908:13;5904:27;5894:55;;5945:1;5942;5935:12;5894:55;5985:2;5972:16;6011:2;6003:6;6000:14;5997:34;;;6027:1;6024;6017:12;5997:34;6072:7;6067:2;6058:6;6054:2;6050:15;6046:24;6043:37;6040:57;;;6093:1;6090;6083:12;6040:57;6124:2;6116:11;;;;;6146:6;;-1:-1:-1;5566:592:1;;-1:-1:-1;;;;5566:592:1:o;6163:328::-;6240:6;6248;6256;6309:2;6297:9;6288:7;6284:23;6280:32;6277:52;;;6325:1;6322;6315:12;6277:52;6348:29;6367:9;6348:29;:::i;:::-;6338:39;;6424:2;6413:9;6409:18;6396:32;6386:42;;6447:38;6481:2;6470:9;6466:18;6447:38;:::i;:::-;6437:48;;6163:328;;;;;:::o;6496:118::-;6582:5;6575:13;6568:21;6561:5;6558:32;6548:60;;6604:1;6601;6594:12;6619:315;6684:6;6692;6745:2;6733:9;6724:7;6720:23;6716:32;6713:52;;;6761:1;6758;6751:12;6713:52;6784:29;6803:9;6784:29;:::i;:::-;6774:39;;6863:2;6852:9;6848:18;6835:32;6876:28;6898:5;6876:28;:::i;:::-;6923:5;6913:15;;;6619:315;;;;;:::o;7306:127::-;7367:10;7362:3;7358:20;7355:1;7348:31;7398:4;7395:1;7388:15;7422:4;7419:1;7412:15;7438:631;7502:5;-1:-1:-1;;;;;7573:2:1;7565:6;7562:14;7559:40;;;7579:18;;:::i;:::-;7654:2;7648:9;7622:2;7708:15;;-1:-1:-1;;7704:24:1;;;7730:2;7700:33;7696:42;7684:55;;;7754:18;;;7774:22;;;7751:46;7748:72;;;7800:18;;:::i;:::-;7840:10;7836:2;7829:22;7869:6;7860:15;;7899:6;7891;7884:22;7939:3;7930:6;7925:3;7921:16;7918:25;7915:45;;;7956:1;7953;7946:12;7915:45;8006:6;8001:3;7994:4;7986:6;7982:17;7969:44;8061:1;8054:4;8045:6;8037;8033:19;8029:30;8022:41;;;;7438:631;;;;;:::o;8074:666::-;8169:6;8177;8185;8193;8246:3;8234:9;8225:7;8221:23;8217:33;8214:53;;;8263:1;8260;8253:12;8214:53;8286:29;8305:9;8286:29;:::i;:::-;8276:39;;8334:38;8368:2;8357:9;8353:18;8334:38;:::i;:::-;8324:48;;8419:2;8408:9;8404:18;8391:32;8381:42;;8474:2;8463:9;8459:18;8446:32;-1:-1:-1;;;;;8493:6:1;8490:30;8487:50;;;8533:1;8530;8523:12;8487:50;8556:22;;8609:4;8601:13;;8597:27;-1:-1:-1;8587:55:1;;8638:1;8635;8628:12;8587:55;8661:73;8726:7;8721:2;8708:16;8703:2;8699;8695:11;8661:73;:::i;:::-;8651:83;;;8074:666;;;;;;;:::o;8745:450::-;8814:6;8867:2;8855:9;8846:7;8842:23;8838:32;8835:52;;;8883:1;8880;8873:12;8835:52;8923:9;8910:23;-1:-1:-1;;;;;8948:6:1;8945:30;8942:50;;;8988:1;8985;8978:12;8942:50;9011:22;;9064:4;9056:13;;9052:27;-1:-1:-1;9042:55:1;;9093:1;9090;9083:12;9042:55;9116:73;9181:7;9176:2;9163:16;9158:2;9154;9150:11;9116:73;:::i;9200:383::-;9274:6;9282;9290;9343:2;9331:9;9322:7;9318:23;9314:32;9311:52;;;9359:1;9356;9349:12;9311:52;9382:29;9401:9;9382:29;:::i;:::-;9372:39;;9461:2;9450:9;9446:18;9433:32;9474:28;9496:5;9474:28;:::i;:::-;9200:383;;9521:5;;-1:-1:-1;;;9573:2:1;9558:18;;;;9545:32;;9200:383::o;9588:260::-;9656:6;9664;9717:2;9705:9;9696:7;9692:23;9688:32;9685:52;;;9733:1;9730;9723:12;9685:52;9756:29;9775:9;9756:29;:::i;:::-;9746:39;;9804:38;9838:2;9827:9;9823:18;9804:38;:::i;:::-;9794:48;;9588:260;;;;;:::o;9853:407::-;10055:2;10037:21;;;10094:2;10074:18;;;10067:30;10133:34;10128:2;10113:18;;10106:62;-1:-1:-1;;;10199:2:1;10184:18;;10177:41;10250:3;10235:19;;9853:407::o;10265:350::-;10467:2;10449:21;;;10506:2;10486:18;;;10479:30;10545:28;10540:2;10525:18;;10518:56;10606:2;10591:18;;10265:350::o;10620:410::-;10822:2;10804:21;;;10861:2;10841:18;;;10834:30;10900:34;10895:2;10880:18;;10873:62;-1:-1:-1;;;10966:2:1;10951:18;;10944:44;11020:3;11005:19;;10620:410::o;11035:401::-;11237:2;11219:21;;;11276:2;11256:18;;;11249:30;11315:34;11310:2;11295:18;;11288:62;-1:-1:-1;;;11381:2:1;11366:18;;11359:35;11426:3;11411:19;;11035:401::o;11441:356::-;11643:2;11625:21;;;11662:18;;;11655:30;11721:34;11716:2;11701:18;;11694:62;11788:2;11773:18;;11441:356::o;11802:412::-;12004:2;11986:21;;;12043:2;12023:18;;;12016:30;12082:34;12077:2;12062:18;;12055:62;-1:-1:-1;;;12148:2:1;12133:18;;12126:46;12204:3;12189:19;;11802:412::o;12219:127::-;12280:10;12275:3;12271:20;12268:1;12261:31;12311:4;12308:1;12301:15;12335:4;12332:1;12325:15;12351:128;12391:3;12422:1;12418:6;12415:1;12412:13;12409:39;;;12428:18;;:::i;:::-;-1:-1:-1;12464:9:1;;12351:128::o;12484:399::-;12686:2;12668:21;;;12725:2;12705:18;;;12698:30;12764:34;12759:2;12744:18;;12737:62;-1:-1:-1;;;12830:2:1;12815:18;;12808:33;12873:3;12858:19;;12484:399::o;12888:404::-;13090:2;13072:21;;;13129:2;13109:18;;;13102:30;13168:34;13163:2;13148:18;;13141:62;-1:-1:-1;;;13234:2:1;13219:18;;13212:38;13282:3;13267:19;;12888:404::o;13297:380::-;13376:1;13372:12;;;;13419;;;13440:61;;13494:4;13486:6;13482:17;13472:27;;13440:61;13547:2;13539:6;13536:14;13516:18;13513:38;13510:161;;;13593:10;13588:3;13584:20;13581:1;13574:31;13628:4;13625:1;13618:15;13656:4;13653:1;13646:15;13510:161;;13297:380;;;:::o;15502:351::-;15704:2;15686:21;;;15743:2;15723:18;;;15716:30;15782:29;15777:2;15762:18;;15755:57;15844:2;15829:18;;15502:351::o;15858:352::-;16060:2;16042:21;;;16099:2;16079:18;;;16072:30;16138;16133:2;16118:18;;16111:58;16201:2;16186:18;;15858:352::o;16215:399::-;16417:2;16399:21;;;16456:2;16436:18;;;16429:30;16495:34;16490:2;16475:18;;16468:62;-1:-1:-1;;;16561:2:1;16546:18;;16539:33;16604:3;16589:19;;16215:399::o;16619:405::-;16821:2;16803:21;;;16860:2;16840:18;;;16833:30;16899:34;16894:2;16879:18;;16872:62;-1:-1:-1;;;16965:2:1;16950:18;;16943:39;17014:3;16999:19;;16619:405::o;17029:168::-;17069:7;17135:1;17131;17127:6;17123:14;17120:1;17117:21;17112:1;17105:9;17098:17;17094:45;17091:71;;;17142:18;;:::i;:::-;-1:-1:-1;17182:9:1;;17029:168::o;17202:184::-;17272:6;17325:2;17313:9;17304:7;17300:23;17296:32;17293:52;;;17341:1;17338;17331:12;17293:52;-1:-1:-1;17364:16:1;;17202:184;-1:-1:-1;17202:184:1:o;17391:419::-;17593:2;17575:21;;;17632:2;17612:18;;;17605:30;17671:34;17666:2;17651:18;;17644:62;17742:25;17737:2;17722:18;;17715:53;17800:3;17785:19;;17391:419::o;18124:469::-;18326:2;18308:21;;;18365:2;18345:18;;;18338:30;18404:34;18399:2;18384:18;;18377:62;18475:34;18470:2;18455:18;;18448:62;-1:-1:-1;;;18541:3:1;18526:19;;18519:32;18583:3;18568:19;;18124:469::o;18598:400::-;18800:2;18782:21;;;18839:2;18819:18;;;18812:30;18878:34;18873:2;18858:18;;18851:62;-1:-1:-1;;;18944:2:1;18929:18;;18922:34;18988:3;18973:19;;18598:400::o;19383:245::-;19450:6;19503:2;19491:9;19482:7;19478:23;19474:32;19471:52;;;19519:1;19516;19509:12;19471:52;19551:9;19545:16;19570:28;19592:5;19570:28;:::i;19633:405::-;19835:2;19817:21;;;19874:2;19854:18;;;19847:30;19913:34;19908:2;19893:18;;19886:62;-1:-1:-1;;;19979:2:1;19964:18;;19957:39;20028:3;20013:19;;19633:405::o;20043:352::-;20245:2;20227:21;;;20284:2;20264:18;;;20257:30;20323;20318:2;20303:18;;20296:58;20386:2;20371:18;;20043:352::o;21219:135::-;21258:3;-1:-1:-1;;21279:17:1;;21276:43;;;21299:18;;:::i;:::-;-1:-1:-1;21346:1:1;21335:13;;21219:135::o;22360:405::-;22562:2;22544:21;;;22601:2;22581:18;;;22574:30;22640:34;22635:2;22620:18;;22613:62;-1:-1:-1;;;22706:2:1;22691:18;;22684:39;22755:3;22740:19;;22360:405::o;23126:356::-;23328:2;23310:21;;;23347:18;;;23340:30;23406:34;23401:2;23386:18;;23379:62;23473:2;23458:18;;23126:356::o;24237:125::-;24277:4;24305:1;24302;24299:8;24296:34;;;24310:18;;:::i;:::-;-1:-1:-1;24347:9:1;;24237:125::o;25898:403::-;26100:2;26082:21;;;26139:2;26119:18;;;26112:30;26178:34;26173:2;26158:18;;26151:62;-1:-1:-1;;;26244:2:1;26229:18;;26222:37;26291:3;26276:19;;25898:403::o;29550:415::-;29752:2;29734:21;;;29791:2;29771:18;;;29764:30;29830:34;29825:2;29810:18;;29803:62;-1:-1:-1;;;29896:2:1;29881:18;;29874:49;29955:3;29940:19;;29550:415::o;30390:127::-;30451:10;30446:3;30442:20;30439:1;30432:31;30482:4;30479:1;30472:15;30506:4;30503:1;30496:15;30522:470;30701:3;30739:6;30733:13;30755:53;30801:6;30796:3;30789:4;30781:6;30777:17;30755:53;:::i;:::-;30871:13;;30830:16;;;;30893:57;30871:13;30830:16;30927:4;30915:17;;30893:57;:::i;:::-;30966:20;;30522:470;-1:-1:-1;;;;30522:470:1:o;35247:246::-;35287:4;-1:-1:-1;;;;;35400:10:1;;;;35370;;35422:12;;;35419:38;;;35437:18;;:::i;:::-;35474:13;;35247:246;-1:-1:-1;;;35247:246:1:o;35498:253::-;35538:3;-1:-1:-1;;;;;35627:2:1;35624:1;35620:10;35657:2;35654:1;35650:10;35688:3;35684:2;35680:12;35675:3;35672:21;35669:47;;;35696:18;;:::i;35756:127::-;35817:10;35812:3;35808:20;35805:1;35798:31;35848:4;35845:1;35838:15;35872:4;35869:1;35862:15;35888:120;35928:1;35954;35944:35;;35959:18;;:::i;:::-;-1:-1:-1;35993:9:1;;35888:120::o;36429:489::-;-1:-1:-1;;;;;36698:15:1;;;36680:34;;36750:15;;36745:2;36730:18;;36723:43;36797:2;36782:18;;36775:34;;;36845:3;36840:2;36825:18;;36818:31;;;36623:4;;36866:46;;36892:19;;36884:6;36866:46;:::i;:::-;36858:54;36429:489;-1:-1:-1;;;;;;36429:489:1:o;36923:249::-;36992:6;37045:2;37033:9;37024:7;37020:23;37016:32;37013:52;;;37061:1;37058;37051:12;37013:52;37093:9;37087:16;37112:30;37136:5;37112:30;:::i;37177:112::-;37209:1;37235;37225:35;;37240:18;;:::i;:::-;-1:-1:-1;37274:9:1;;37177:112::o
Swarm Source
ipfs://a85bfba6080cfed704ac164c5aca5d346e7fc153e18d0ac54b7c580466e1f00f
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.